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": "YouTube Search Results Exporter", "version": "1.0.0", "description": "Export YouTube search results to a CSV file. The free version lets you export up to 20 results \u2014 unlimited export coming soon!", "permissions": [ "storage" ], "host_permissions": [], "icons": { "32": "icons\/32.png", "128": "icons\/logo.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/results*" ], "js": [ "content_ytb_search.js" ], "run_at": "document_start" } ], "action": { "default_icon": { "128": "icons\/logo.png" }, "default_popup": "popup.html" }, "web_accessible_resources": [ { "resources": [ "popup.html", "icons\/*", "js\/ytb_search_inject.js", "popup.js" ], "matches": [ "*:\/\/*\/*" ] } ] }