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文件
下載Blacklist擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" } |