Bing Webmaster Tools - Bulk Url Removal
This extension can remove a list of URLs from Bing via Bing Webmaster Tools with one click. You don't need to copy and paste…
Was ist Bing Webmaster Tools - Bulk Url Removal?
Bing Webmaster Tools - Bulk Url Removal ist eine Chrome-Erweiterung, die von https://polymorphiclabs.io entwickelt wurde, und ihr Hauptmerkmal ist "This extension can remove a list of URLs from Bing via Bing Webmaster Tools with one click. You don't need to copy and paste…".
Erweiterungsscreenshots
Bing Webmaster Tools - Bulk Url Removal-Erweiterungs-CRX-Datei herunterladen
Laden Sie Bing Webmaster Tools - Bulk Url 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 can remove a list of URLs from Bing via Bing Webmaster Tools with one click. You don't need to copy and paste individual URL manually and click on the remove button one at a time. Instead, create a CSV file with all your to-be-removed URLs in it, "upload it", and click on remove. To learn more about the expected CSV format, please refer to the CSV Format section on https://github.com/noitcudni/bing-webmaster-bulk-url-removal/#csv-format. Click on the the blue trash can icon to upload your CSV file to kick off a bulk removal job.
Grundlegende Informationen zur Erweiterung
Name | Bing Webmaster Tools - Bulk Url Removal |
ID | knhcaipgfilkpgkejhmjbgklpalkaahi |
Offizielle URL | https://chromewebstore.google.com/detail/bing-webmaster-tools-bulk/knhcaipgfilkpgkejhmjbgklpalkaahi |
Beschreibung | This extension can remove a list of URLs from Bing via Bing Webmaster Tools with one click. You don't need to copy and paste… |
Dateigröße | 1.47 MB |
Installationsanzahl | 304 |
Aktuelle Version | 1.6 |
Letztes Update | 2024-03-01 |
Veröffentlichungsdatum | 2021-04-03 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | https://polymorphiclabs.io |
[email protected] | |
Zahlungsart | in_app |
Erweiterungswebsite | https://github.com/noitcudni/bing-webmaster-tools-bulk-url-removal |
Hilfeseite URL | https://github.com/noitcudni/bing-webmaster-tools-bulk-url-removal/issues |
URL der Datenschutzrichtlinien-Seite | https://polymorphiclabs.io/pages-output/privacy_policy |
Unterstützte Sprachen | en,zh-CN,zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bing Webmaster Tools - Bulk Url Removal", "version": "1.6", "action": { "default_title": "Show the popup", "default_popup": "popup.html" }, "default_locale": "en", "icons": { "16": "images\/bing_trash_can_16.png", "32": "images\/bing_trash_can_32.png", "48": "images\/bing_trash_can_48.png", "128": "images\/bing_trash_can_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.bing.com\/webmasters\/searchconfig\/blockurl*" ], "js": [ "compiled\/content-script.js" ], "css": [ "bootstrap.min.css" ], "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 } |