Block Site
Easily block websites of your choice!
Block Site란 무엇입니까?
Block Site은(는) Jorvi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily block websites of your choice!"입니다.
확장 프로그램 스크린샷
Block Site 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Block Site is a browser extension to help you block desired websites (domains). To work with this addon, simply right-click on any webpage and then click on the "Block this website" via the context-menu item. The website's domain address will be added to the block list (see options page). Please note, the whole domain will be added to the block list, not just a URL. To change this list, open the options page, remove the desired item, or add a new one. For any blocked domain, you can add a redirect URL on the options page. To do so, please first add a domain to the blocked list, and then add a redirect URL in the second column (as shown in the last screenshot). Now, instead of blocking a domain, the website will be redirected to the redirect URL. There is also an option to block desired iframes. To do so, please add the URL (for the iframe) in the designated area on the options page (top section). To report bugs, please visit the addon's homepage (https://mybrowseraddon.com/block-site.html) and fill out the bug report form.
확장 프로그램 기본 정보
이름 | Block Site |
ID | nkedbnokglppcmiencngilkkhhnpcfjb |
공식 URL | https://chromewebstore.google.com/detail/block-site/nkedbnokglppcmiencngilkkhhnpcfjb |
설명 | Easily block websites of your choice! |
파일 크기 | 33.57 KB |
설치 횟수 | 60,000 |
현재 버전 | 0.2.2 |
최근 업데이트 | 2023-07-19 |
출시 날짜 | 2018-05-30 |
평점 | 3.93/5 총 195 개의 평점 |
개발자 | Jorvi |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://mybrowseraddon.com/block-site.html |
도움말 페이지 URL | https://mybrowseraddon.com/block-site.html |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.2.2", "name": "Block Site", "manifest_version": 3, "offline_enabled": true, "host_permissions": [ "*:\/\/*\/*" ], "description": "Easily block websites of your choice!", "homepage_url": "https:\/\/mybrowseraddon.com\/block-site.html", "commands": { "_execute_action": [] }, "background": { "service_worker": "background.js" }, "options_ui": { "open_in_tab": true, "page": "data\/options\/options.html" }, "permissions": [ "storage", "contextMenus", "declarativeNetRequest" ], "action": { "default_title": "Block Site", "default_icon": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png" } }, "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png" } } |