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": "GSC Bulk URL Removal Tool",
"version": "2.0.0",
"description": "Automate bulk URL removal in Google Search Console. Fast, reliable tool with progress tracking and CSV export.",
"author": "Aima A",
"homepage_url": "https:\/\/apps.aimaatigari.com\/ext\/gsc-bulk-url-removal-tool",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_title": "GSC Bulk URL Removal"
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"scripting"
],
"content_scripts": [
{
"matches": [
"https:\/\/search.google.com\/search-console\/removals*"
],
"js": [
"content.js"
],
"css": [
"styles.css"
],
"run_at": "document_idle"
}
],
"host_permissions": [
"https:\/\/search.google.com\/*"
],
"web_accessible_resources": [
{
"resources": [
"icons\/*.png"
],
"matches": [
"https:\/\/search.google.com\/*"
]
}
]
}