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": "Google Search Console Tables Downloader",
"version": "0.1.0",
"description": "Extension for downloading tables with page addresses from Google Search Console.",
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Google Search Console Tables Downloader",
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"contextMenus"
],
"content_scripts": [
{
"matches": [
"https:\/\/search.google.com\/u*"
],
"run_at": "document_idle",
"js": [
"contentScript.js"
]
}
]
}