This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80; | |
server_name localhost; | |
root /home/website/web; | |
rewrite ^/app\.php/?(.*)$ /$1 permanent; | |
try_files $uri @rewriteapp; | |
location @rewriteapp { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name CleanComments | |
// @namespace ForBetterJanDan | |
// @description 眼不见心不烦, 删除煎蛋多说"吐槽"中某些人的评论 | |
// @include http://jandan.net/pic* | |
// @include http://jandan.net/ooxx* | |
// @version 2 | |
// ==/UserScript== | |
if ($ != undefined) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name CleanComments | |
// @namespace ForBetterJanDan | |
// @description 眼不见心不烦, 删除煎蛋多说"吐槽"中某些人的评论 | |
// @include http://jandan.net/* | |
// @version 1 | |
// ==/UserScript== | |
document.addEventListener('DOMNodeInserted',function(){ | |
// 屏蔽关键字列表, 内容为多说的UserID |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Direct Links in Google Search | |
// @namespace https://github.com/astanin | |
// @description Remove indirections from Google search results on all TLDs. | |
// @include https://www.google.tld/*output=search* | |
// @include http://www.google.tld/*output=search* | |
// @include https://www.google.tld/search* | |
// @include http://www.google.tld/search* | |
// @include https://www.google.tld/#* | |
// @include http://www.google.tld/#* |