Blacklist
Blacklist is a very simple website blocker designed for personal use.
Blacklist란 무엇입니까?
Blacklist은(는) http://rahulgi.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Blacklist is a very simple website blocker designed for personal use."입니다.
확장 프로그램 스크린샷
Blacklist 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is a very simple extension for Google Chrome. When you find yourself on a website that is taking too much of your time, simply hit the Blacklist button in the upper right corner of Chrome and you will be blocked from visiting that site while Blacklist remains active. To resume visiting any site blocked by Blacklist, you must visit the site, click the Blacklist extension button in the upper right corner of the browser, and then click the "unlist" button. You will be forced to wait for 15 seconds before the site is unlisted and you are redirected to the root URL.
확장 프로그램 기본 정보
이름 | |
ID | jbpccandodannohfaoncogijbkfcmpgo |
공식 URL | https://chrome.google.com/webstore/detail/blacklist/jbpccandodannohfaoncogijbkfcmpgo |
설명 | Blacklist is a very simple website blocker designed for personal use. |
파일 크기 | 575 KB |
설치 횟수 | 34,267 |
현재 버전 | 0.93 |
최근 업데이트 | 2019-12-09 |
출시 날짜 | 2019-12-09 |
평점 | 3.71/5 총 104 개의 평점 |
개발자 | http://rahulgi.com |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://rahulgi.com/blacklist |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Blacklist", "version": "0.93", "manifest_version": 2, "description": "Blacklist is a very simple website blocker designed for personal use.", "icons": { "16": "icon.16.png", "48": "icon.48.png", "128": "icon.128.png" }, "homepage_url": "http:\/\/rahulgi.github.com\/Blacklist", "browser_action": { "default_icon": "icon.48.png", "default_popup": "popup.html" }, "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/contentScript.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "blockedSite.html" ], "permissions": [ "*:\/\/*\/*", "tabs", "storage", "webRequest", "webRequestBlocking", "webNavigation" ], "incognito": "split" } |