diff --git a/Chrome Extension/icon128.png b/Chrome Extension/icon128.png deleted file mode 100644 index 76a66b1e..00000000 Binary files a/Chrome Extension/icon128.png and /dev/null differ diff --git a/Chrome Extension/icon16.png b/Chrome Extension/icon16.png deleted file mode 100644 index 5aca50a0..00000000 Binary files a/Chrome Extension/icon16.png and /dev/null differ diff --git a/Chrome Extension/icon48.png b/Chrome Extension/icon48.png deleted file mode 100644 index 5b3c7654..00000000 Binary files a/Chrome Extension/icon48.png and /dev/null differ diff --git a/Chrome Extension/manifest.json b/Chrome Extension/manifest.json deleted file mode 100644 index aef8c3c1..00000000 --- a/Chrome Extension/manifest.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "manifest_version": 2, - "name": "FrankerFaceZ", - "short_name": "FFZ", - "version": "1.57", - "description": "Use a variety of unique faces on Twitch!", - "homepage_url": "http://www.frankerfacez.com", - "icons": { - "16": "icon16.png", - "48": "icon48.png", - "128": "icon128.png" }, - "content_scripts": [ { - "all_frames": true, - "js": [ "script.js" ], - "matches": [ "*://*.twitch.tv/*" ], - "exclude_globs": [ "*://api.twitch.tv/*" ] - } ], - "permissions": [ - "*://*.twitch.tv/*", - "*://*.frankerfacez.com/*" - ] -} \ No newline at end of file diff --git a/Chrome Extension/script.js b/Chrome Extension/script.js deleted file mode 100644 index 36ead7b2..00000000 --- a/Chrome Extension/script.js +++ /dev/null @@ -1,41 +0,0 @@ -// ==UserScript== -// @name FrankerFaceZ -// @namespace FrankerFaceZ -// @include *.twitch.tv/* -// @exclude api.twitch.tv/* -// @grant none -// @icon http://cdn.frankerfacez.com/icon32.png -// @version 1.56 -// ==/UserScript== - -function ffz_init() -{ - var script = document.createElement('script'); - script.type = 'text/javascript'; - - if ( localStorage.ffzDebugMode == "true" ) { - // Developer Mode is enabled. But is the server running? Check before - // we include the script, otherwise someone could break their - // experience and not be able to recover. - var xhr = new XMLHttpRequest(); - xhr.open("GET", "//localhost:8000/dev_server", true); - xhr.onload = function(e) { - var resp = JSON.parse(xhr.responseText); - console.log("FFZ: Development Server is present. Version " + resp.version + " running from: " + resp.path); - script.src = "//localhost:8000/script/script.js"; - document.body.classList.add("ffz-dev"); - document.head.appendChild(script); - }; - xhr.onerror = function(e) { - console.log("FFZ: Development Server is not present. Using CDN."); - script.src = "//cdn.frankerfacez.com/script/script.min.js"; - document.head.appendChild(script); - }; - return xhr.send(null); - } - - script.src = "//cdn.frankerfacez.com/script/script.min.js"; - document.head.appendChild(script); -} - -ffz_init(); \ No newline at end of file diff --git a/changelog.html b/changelog.html index fee27a38..c888e4d6 100644 --- a/changelog.html +++ b/changelog.html @@ -1,3 +1,8 @@ +
3.5.249
+ +
3.5.248