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…
WebMasterTools: Bulk Outdated Content Removal란 무엇입니까?
WebMasterTools: Bulk Outdated Content Removal은(는) https://polymorphiclabs.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension performs Google Webmaster Tools' "remove outdated content" against a list of URLs., so you don't need to enter…"입니다.
확장 프로그램 스크린샷
WebMasterTools: Bulk Outdated Content Removal 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | WebMasterTools: Bulk Outdated Content Removal |
ID | nifcnomokilnniefahjbcelkepelpphl |
공식 URL | https://chromewebstore.google.com/detail/webmastertools-bulk-outda/nifcnomokilnniefahjbcelkepelpphl |
설명 | This extension performs Google Webmaster Tools' "remove outdated content" against a list of URLs., so you don't need to enter… |
파일 크기 | 1.47 MB |
설치 횟수 | 432 |
현재 버전 | 1.8 |
최근 업데이트 | 2023-12-27 |
출시 날짜 | 2020-04-22 |
평점 | 3.60/5 총 10 개의 평점 |
개발자 | https://polymorphiclabs.io |
이메일 | [email protected] |
결제 유형 | in_app |
확장 프로그램 웹 사이트 | https://github.com/noitcudni/google-webmaster-tools-bulk-outdated-content-removal |
도움말 페이지 URL | https://github.com/noitcudni/google-webmaster-tools-bulk-outdated-content-removal/issues |
개인정보 보호 정책 페이지 URL | https://polymorphiclabs.io/pages-output/privacy_policy |
지원되는 언어 | 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 } |