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…

Hvad er WebMasterTools: Bulk Outdated Content Removal?

WebMasterTools: Bulk Outdated Content Removal er en Chrome-udvidelse udviklet af https://polymorphiclabs.io, og dens hovedfunktion er "This extension performs Google Webmaster Tools' "remove outdated content" against a list of URLs., so you don't need to enter…".

Udvidelsesskærmbilleder

screenshot

Download WebMasterTools: Bulk Outdated Content Removal-udvidelses-CRX-fil

Download WebMasterTools: Bulk Outdated Content Removal-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn WebMasterTools: Bulk Outdated Content Removal WebMasterTools: Bulk Outdated Content Removal
ID nifcnomokilnniefahjbcelkepelpphl
Officiel URL https://chromewebstore.google.com/detail/webmastertools-bulk-outda/nifcnomokilnniefahjbcelkepelpphl
Beskrivelse This extension performs Google Webmaster Tools' "remove outdated content" against a list of URLs., so you don't need to enter…
Filstørrelse 1.47 MB
Antal Installationer 432
Nuværende Version 1.8
Senest Opdateret 2023-12-27
Udgivelsesdato 2020-04-22
Bedømmelse 3.60/5 Samlet 10 Bedømmelser
Udvikler https://polymorphiclabs.io
E-mail [email protected]
Betalingsmetode in_app
Udvidelseswebsted https://github.com/noitcudni/google-webmaster-tools-bulk-outdated-content-removal
Hjælpeside-URL https://github.com/noitcudni/google-webmaster-tools-bulk-outdated-content-removal/issues
URL til Fortrolighedspolitik Side https://polymorphiclabs.io/pages-output/privacy_policy
Understøttede Sprog 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
}