WebMaster Tools - Bulk URL Removal

Google Search Console - Bulk URL Removal

WebMaster Tools - Bulk URL Removalคืออะไร?

WebMaster Tools - Bulk URL Removal เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://polymorphiclabs.io และคุณลักษณะหลักของมันคือ "Google Search Console - Bulk URL Removal"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WebMaster Tools - Bulk URL Removal

ดาวน์โหลดไฟล์ส่วนขยาย WebMaster Tools - Bulk URL Removal ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension can remove a list of URLs from google via Google's search console formerly known as Google's 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/google-search-console-bulk-url-removal/#csv-format.

Click on the the green trash can icon to upload your CSV file to kick off a bulk removal job. 

If you run into any issues, please file an issue on github: https://github.com/noitcudni/google-webmaster-tools-bulk-url-removal/issues                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ WebMaster Tools - Bulk URL Removal WebMaster Tools - Bulk URL Removal
ID pmnpibilljafelnghknefahibdnfeece
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/webmaster-tools-bulk-url/pmnpibilljafelnghknefahibdnfeece
คำอธิบาย Google Search Console - Bulk URL Removal
ขนาดไฟล์ 375 KB
จำนวนการติดตั้ง 6,420
เวอร์ชันปัจจุบัน 3.1.3
อัปเดตครั้งล่าสุด 2024-03-01
วันที่เผยแพร่ 2020-06-01
คะแนน 3.98/5 รวมทั้งหมด 85 คะแนน
ผู้พัฒนา https://polymorphiclabs.io
อีเมล [email protected]
ประเภทการชำระเงิน in_app
เว็บไซต์ส่วนขยาย https://google-search-console-bulk-url-removal-tool.com/
URL หน้าช่วยเหลือ https://github.com/noitcudni/google-webmaster-tools-bulk-url-removal/issues
URL หน้านโยบายความเป็นส่วนตัว https://polymorphiclabs.io/pages-output/privacy_policy
ภาษาที่รองรับ en,es,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "version": "3.1.3",
    "action": {
        "default_title": "Show the popup",
        "default_popup": "popup.html"
    },
    "default_locale": "en",
    "icons": {
        "16": "images\/trash_icon16.png",
        "32": "images\/trash_icon32.png",
        "48": "images\/trash_icon48.png",
        "128": "images\/trash_icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "inject_script.js"
            ],
            "matches": [
                "https:\/\/search.google.com\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/search.google.com\/*search-console*"
            ],
            "js": [
                "inject.js",
                "compiled\/content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "compiled\/background.js"
    },
    "permissions": [
        "storage",
        "downloads",
        "unlimitedStorage"
    ],
    "host_permissions": [
        "https:\/\/api.gumroad.com\/v2\/licenses\/verify",
        "https:\/\/api.lemonsqueezy.com\/v1\/*"
    ],
    "manifest_version": 3
}