Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "__MSG_appName__",
"version": "1.9",
"description": "__MSG_shortDesc__",
"default_locale": "en",
"icons": {
"128": "assets\/images\/icon_128.png"
},
"action": {
"default_icon": {
"128": "assets\/images\/icon_128.png"
},
"default_title": "Email Scraper"
},
"side_panel": {
"default_path": "sidepanel.html"
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"activeTab",
"scripting",
"storage",
"clipboardWrite",
"sidePanel",
"tabs"
],
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"scripts\/content.js"
],
"run_at": "document_idle"
}
]
}