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…
Co to jest Bing Webmaster Tools - Bulk Url Removal?
Bing Webmaster Tools - Bulk Url Removal to rozszerzenie Chrome opracowane przez https://polymorphiclabs.io, a jego główną funkcją jest „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…”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Bing Webmaster Tools - Bulk Url Removal
Pobierz pliki rozszerzeń Bing Webmaster Tools - Bulk Url Removal w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | knhcaipgfilkpgkejhmjbgklpalkaahi |
| Oficjalny URL | https://chromewebstore.google.com/detail/bing-webmaster-tools-bulk/knhcaipgfilkpgkejhmjbgklpalkaahi |
| Opis | 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… |
| Rozmiar pliku | 1.47 MB |
| Liczba instalacji | 304 |
| Aktualna Wersja | 1.6 |
| Ostatnia Aktualizacja | 2024-03-01 |
| Data Publikacji | 2021-04-03 |
| Ocena | 5.00/5 Łącznie 3 Oceny |
| Deweloper | https://polymorphiclabs.io |
| [email protected] | |
| Typ Płatności | in_app |
| Strona Rozszerzenia | https://github.com/noitcudni/bing-webmaster-tools-bulk-url-removal |
| Adres URL Strony Pomocy | https://github.com/noitcudni/bing-webmaster-tools-bulk-url-removal/issues |
| Adres URL Strony Polityki Prywatności | https://polymorphiclabs.io/pages-output/privacy_policy |
| Obsługiwane Języki | 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
} | |