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…

Bing Webmaster Tools - Bulk Url Removal란 무엇입니까?

Bing Webmaster Tools - Bulk Url Removal은(는) https://polymorphiclabs.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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…"입니다.

확장 프로그램 스크린샷

screenshot

Bing Webmaster Tools - Bulk Url Removal 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Bing Webmaster Tools - Bulk Url Removal Bing Webmaster Tools - Bulk Url Removal
ID knhcaipgfilkpgkejhmjbgklpalkaahi
공식 URL https://chromewebstore.google.com/detail/bing-webmaster-tools-bulk/knhcaipgfilkpgkejhmjbgklpalkaahi
설명 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…
파일 크기 1.47 MB
설치 횟수 304
현재 버전 1.6
최근 업데이트 2024-03-01
출시 날짜 2021-04-03
평점 5.00/5 총 3 개의 평점
개발자 https://polymorphiclabs.io
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://github.com/noitcudni/bing-webmaster-tools-bulk-url-removal
도움말 페이지 URL https://github.com/noitcudni/bing-webmaster-tools-bulk-url-removal/issues
개인정보 보호 정책 페이지 URL https://polymorphiclabs.io/pages-output/privacy_policy
지원되는 언어 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
}