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": "YouTube101 - Assistant", "version": "1.1.0", "description": "AI assistant to help content creators develop and manage their YouTube channel with AI support.", "icons": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "action": { "default_popup": "popup.html" }, "permissions": [ "storage", "clipboardRead" ], "host_permissions": [ "https:\/\/*.youtube.com\/*", "https:\/\/youtube101.id\/*", "https:\/\/generativelanguage.googleapis.com\/*" ], "background": { "service_worker": "scripts\/background.js" }, "content_scripts": [ { "matches": [ "*:\/\/studio.youtube.com\/*" ], "css": [ "styles\/content.css" ], "js": [ "scripts\/content.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/*.youtube.com\/*" ], "css": [ "styles\/content.css" ], "js": [ "scripts\/content.js" ] } ], "web_accessible_resources": [ { "resources": [ "assets\/*" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ] }