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".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου 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 |
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 } |