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", "name": "The Youtube Bookmarker", "description": "A simple bookmarking tool for youtube videos", "version": "0.0.1", "manifest_version": 3, "permissions": [ "tabs", "storage" ], "action": { "default_popup": "popup.html", "default_icon": ".\/assets\/icon.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "content-script.js" ] } ], "icons": { "16": "assets\/icon.png", "48": "assets\/icon.png", "128": "assets\/icon.png" }, "web_accessible_resources": [ { "resources": [ "assets\/bookmark.png", "assets\/icon.png" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "content_security_policy": { "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';" } }