Page Tool
Block specific URLs; Show page links; Cookie Tool and Delete Browsing Data
Page Tool란 무엇입니까?
Page Tool은(는) searchpuzzle38에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Block specific URLs; Show page links; Cookie Tool and Delete Browsing Data"입니다.
확장 프로그램 스크린샷
Page Tool 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
* Block specific URLs - via simple URL snippets, eg. - lens.org - espacenet * Show page links e.g. scripts, images. * Cookies tool: delete, edit, and keep specific cookies. List can be filtered to only show 1 cookie from each domain. * Delete browsing data e.g. cache, history etc.
확장 프로그램 기본 정보
이름 | Page Tool |
ID | bbombkgmpnekkibkifclmcpfagelcopl |
공식 URL | https://chromewebstore.google.com/detail/page-tool/bbombkgmpnekkibkifclmcpfagelcopl |
설명 | Block specific URLs; Show page links; Cookie Tool and Delete Browsing Data |
파일 크기 | 405 KB |
설치 횟수 | 32 |
현재 버전 | 3 |
최근 업데이트 | 2020-12-07 |
출시 날짜 | 2020-01-27 |
개발자 | searchpuzzle38 |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Page Tool", "version": "3", "description": "Block specific URLs; Show page links; Cookie Tool and Delete Browsing Data", "permissions": [ "activeTab", "storage", "webRequest", "webRequestBlocking", "cookies", "browsingData", "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "browser_action": { "default_title": "Page Tool", "default_popup": "popup.html", "default_icon": { "16": "inc\/icon16.png", "32": "inc\/icon32.png", "48": "inc\/icon48.png", "64": "inc\/icon64.png", "128": "inc\/icon128.png" } }, "icons": { "16": "inc\/icon16.png", "32": "inc\/icon32.png", "48": "inc\/icon48.png", "64": "inc\/icon64.png", "128": "inc\/icon128.png" }, "background": { "scripts": [ "lib.js", "background.js" ] }, "content_scripts": [ { "js": [ "lib.js", "page.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ] } ], "manifest_version": 2 } |