Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "minimum_chrome_version": "49", "name": "Alternate Player for Twitch.tv", "short_name": "Alternate Player", "version": "2024.6.14", "description": "__MSG_M0001__", "icons": { "128": "manifest.png" }, "author": "Alexander Choporov (CoolCmd)", "default_locale": "en", "incognito": "split", "content_security_policy": "script-src 'self' 'wasm-eval'; object-src 'self'", "permissions": [ "storage", "cookies", "webRequest", "webRequestBlocking", "management", "system.memory", "system.cpu", "*:\/\/*.twitch.tv\/*", "*:\/\/*.twitchcdn.net\/*", "*:\/\/*.ttvnw.net\/*", "*:\/\/*.jtvnw.net\/*", "*:\/\/*.live-video.net\/*", "*:\/\/*.akamaized.net\/*", "*:\/\/*.cloudfront.net\/*" ], "optional_permissions": [ "contentSettings" ], "web_accessible_resources": [ "player.html", "content.css" ], "background": { "persistent": true, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.twitch.tv\/*" ], "exclude_matches": [ "https:\/\/www.twitch.tv\/popout\/" ], "js": [ "autoclaim.js" ], "all_frames": true, "run_at": "document_idle" }, { "matches": [ "https:\/\/www.twitch.tv\/*" ], "js": [ "gqltoken.js" ], "all_frames": true, "run_at": "document_start" }, { "matches": [ "https:\/\/www.twitch.tv\/*", "https:\/\/m.twitch.tv\/*" ], "exclude_matches": [ "https:\/\/www.twitch.tv\/popout\/" ], "js": [ "common.js", "content.js" ], "all_frames": true, "run_at": "document_start" } ] }