From b36a7df1e60b622a3d4b7a46f5a239e0dfcc1bc3 Mon Sep 17 00:00:00 2001 From: Zixaphir Date: Sun, 27 Jul 2014 18:35:05 -0700 Subject: [PATCH] Move a.4cdn.org to excludes. --- builds/appchan-x.meta.js | 1 + builds/appchan-x.user.js | 3 +-- builds/crx/script.js | 2 -- package.json | 3 ++- src/General/Main.coffee | 2 -- 5 files changed, 4 insertions(+), 7 deletions(-) diff --git a/builds/appchan-x.meta.js b/builds/appchan-x.meta.js index 4c0118393..75bf5581c 100644 --- a/builds/appchan-x.meta.js +++ b/builds/appchan-x.meta.js @@ -13,6 +13,7 @@ // @match *://i.4cdn.org/* // @exclude *://blog.4chan.org/* // @exclude *://dis.4chan.org/* +// @exclude *://a.4cdn.org/* // @grant GM_getValue // @grant GM_setValue // @grant GM_deleteValue diff --git a/builds/appchan-x.user.js b/builds/appchan-x.user.js index 441a2962b..802cda866 100644 --- a/builds/appchan-x.user.js +++ b/builds/appchan-x.user.js @@ -14,6 +14,7 @@ // @match *://i.4cdn.org/* // @exclude *://blog.4chan.org/* // @exclude *://dis.4chan.org/* +// @exclude *://a.4cdn.org/* // @grant GM_getValue // @grant GM_setValue // @grant GM_deleteValue @@ -18088,8 +18089,6 @@ Main.setThemeString(); Style.init(); return; - case 'a.4cdn.org': - return; case 'sys.4chan.org': g.VIEW = 'report'; Style.init(); diff --git a/builds/crx/script.js b/builds/crx/script.js index 386c74512..eac91e091 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -18097,8 +18097,6 @@ Main.setThemeString(); Style.init(); return; - case 'a.4cdn.org': - return; case 'sys.4chan.org': g.VIEW = 'report'; Style.init(); diff --git a/package.json b/package.json index 005430072..e70718a00 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,8 @@ ], "excludes": [ "*://blog.4chan.org/*", - "*://dis.4chan.org/*" + "*://dis.4chan.org/*", + "*://a.4cdn.org/*" ], "files": { "metajs": "appchan-x.meta.js", diff --git a/src/General/Main.coffee b/src/General/Main.coffee index 007de86a4..f3d56c6c1 100644 --- a/src/General/Main.coffee +++ b/src/General/Main.coffee @@ -79,8 +79,6 @@ Main = Main.setThemeString() Style.init() return - when 'a.4cdn.org' - return when 'sys.4chan.org' g.VIEW = 'report' Style.init()