WebMaster Tools - Bulk URL Removal
Google Search Console - Bulk URL Removal
WebMaster Tools - Bulk URL Removal란 무엇입니까?
WebMaster Tools - Bulk URL Removal은(는) https://polymorphiclabs.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Google Search Console - Bulk URL Removal"입니다.
확장 프로그램 스크린샷
WebMaster Tools - Bulk URL Removal 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 } |