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()