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…
Qu'est-ce que WebMasterTools: Bulk Outdated Content Removal ?
WebMasterTools: Bulk Outdated Content Removal est une extension Chrome développée par https://polymorphiclabs.io, et sa fonction principale est "This extension performs Google Webmaster Tools' "remove outdated content" against a list of URLs., so you don't need to enter…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension WebMasterTools: Bulk Outdated Content Removal
Téléchargez les fichiers d'extension WebMasterTools: Bulk Outdated Content Removal au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | WebMasterTools: Bulk Outdated Content Removal |
ID | nifcnomokilnniefahjbcelkepelpphl |
URL Officiel | https://chromewebstore.google.com/detail/webmastertools-bulk-outda/nifcnomokilnniefahjbcelkepelpphl |
Description | This extension performs Google Webmaster Tools' "remove outdated content" against a list of URLs., so you don't need to enter… |
Taille du Fichier | 1.47 MB |
Nombre d'Installations | 432 |
Version Actuelle | 1.8 |
Dernière Mise à Jour | 2023-12-27 |
Date de Publication | 2020-04-22 |
Évaluation | 3.60/5 Total 10 Évaluations |
Développeur | https://polymorphiclabs.io |
[email protected] | |
Type de Paiement | in_app |
Site Web de l'Extension | https://github.com/noitcudni/google-webmaster-tools-bulk-outdated-content-removal |
URL de la Page d'Aide | https://github.com/noitcudni/google-webmaster-tools-bulk-outdated-content-removal/issues |
URL de la Page de Politique de Confidentialité | https://polymorphiclabs.io/pages-output/privacy_policy |
Langues Prises en Charge | 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 } |