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": 3, "name": "Chat Capture Flashcards", "version": "1.0.0", "description": "Runs a script to manage crowdsourced gaming on tiktok", "permissions": [ "activeTab", "scripting", "storage", "sidePanel", "browsingData", "cookies", "tabs" ], "side_panel": { "default_path": "popup.html" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "host_permissions": [ "https:\/\/www.flukertech.com\/play\/*", "https:\/\/www.tiktok.com\/*" ], "background": { "service_worker": "service-worker.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.tiktok.com\/@*" ], "js": [ "pushComments.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/www.flukertech.com\/play\/" ], "js": [ "automateGame.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ { "resources": [ "lib\/particles.min.js" ], "matches": [ "<all_urls>" ] } ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }