WebMasterTools: Bulk Outdated Content Removal
This extension performs Google Webmaster Tools' "remove outdated content" against a list of URLs., so you don't need to enter…
Was ist WebMasterTools: Bulk Outdated Content Removal?
WebMasterTools: Bulk Outdated Content Removal ist eine Chrome-Erweiterung, die von https://polymorphiclabs.io entwickelt wurde, und ihr Hauptmerkmal ist "This extension performs Google Webmaster Tools' "remove outdated content" against a list of URLs., so you don't need to enter…".
Erweiterungsscreenshots
WebMasterTools: Bulk Outdated Content Removal-Erweiterungs-CRX-Datei herunterladen
Laden Sie WebMasterTools: Bulk Outdated Content Removal-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension performs Google Webmaster Tools' "remove outdated content" against a list of URLs., so you don't need to enter individual URLs manually one by one. ATTENTION: if nothing happens, please refresh the page and do it again. Also, your language settings must be in English. 1. Create a list of outdated urls to be removed and store them in a file. All urls are separated by \n. 2. Visit https://search.google.com/search-console/remove-outdated-content 3. Click on the red trash can icon and submit your CSV file. If you run into any issues, please file an issue on github: https://github.com/noitcudni/google-webmaster-tools-bulk-outdated-content-removal/issues
Grundlegende Informationen zur Erweiterung
Name | WebMasterTools: Bulk Outdated Content Removal |
ID | nifcnomokilnniefahjbcelkepelpphl |
Offizielle URL | https://chromewebstore.google.com/detail/webmastertools-bulk-outda/nifcnomokilnniefahjbcelkepelpphl |
Beschreibung | This extension performs Google Webmaster Tools' "remove outdated content" against a list of URLs., so you don't need to enter… |
Dateigröße | 1.47 MB |
Installationsanzahl | 432 |
Aktuelle Version | 1.8 |
Letztes Update | 2023-12-27 |
Veröffentlichungsdatum | 2020-04-22 |
Bewertung | 3.60/5 Insgesamt 10 Bewertungen |
Entwickler | https://polymorphiclabs.io |
[email protected] | |
Zahlungsart | in_app |
Erweiterungswebsite | https://github.com/noitcudni/google-webmaster-tools-bulk-outdated-content-removal |
Hilfeseite URL | https://github.com/noitcudni/google-webmaster-tools-bulk-outdated-content-removal/issues |
URL der Datenschutzrichtlinien-Seite | https://polymorphiclabs.io/pages-output/privacy_policy |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "WebMasterTools: Bulk Outdated Content Removal", "version": "1.8", "action": { "default_title": "Show the popup", "default_popup": "popup.html" }, "icons": { "16": "images\/red_trash_icon16.png", "32": "images\/red_trash_icon32.png", "48": "images\/red_trash_icon48.png", "128": "images\/red_trash_icon128.png" }, "web_accessible_resources": [ { "resources": [ "inject_script.js" ], "matches": [ "https:\/\/search.google.com\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/search.google.com\/search-console\/remove-outdated-content*" ], "js": [ "inject.js", "compiled\/content-script.js" ], "run_at": "document_start" } ], "background": { "service_worker": "compiled\/background.js" }, "permissions": [ "storage", "downloads" ], "host_permissions": [ "https:\/\/api.gumroad.com\/v2\/licenses\/verify", "https:\/\/api.lemonsqueezy.com\/*" ], "manifest_version": 3 } |