Consistency
Consistency helps you to build your habits by blocking websites you don't want to visit.
什麼是Consistency?
Consistency是由Patrik Gallik開發的Chrome擴展程式,該擴展的主要功能是“Consistency helps you to build your habits by blocking websites you don't want to visit.”。
擴展截圖
下載Consistency擴展crx文件
下載Consistency擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
We all have more productive and fulfilling stuff to do than visiting websites that steal our focus and time. Break those bad habits with Consistency. Inspired by James Clear's book Atomic Habits, words from the book appear when you get tempted to visit a page you've previously blocked. List of blocked websites is synced to your Google account (if available), so you can use Consistency in your mobile Chrome as well. Consistency does not track anything, you can check out the source code here: https://github.com/patresk/consistency Changelog: 0.3 - Added timer functionality
擴展基本資訊
名稱 | Consistency |
ID | lnlkeagaboibogkmlokbhmjhdglokgdn |
官方網址 | https://chromewebstore.google.com/detail/consistency/lnlkeagaboibogkmlokbhmjhdglokgdn |
簡介 | Consistency helps you to build your habits by blocking websites you don't want to visit. |
檔案大小 | 61.57 KB |
安裝次數 | 18 |
目前版本 | 0.3 |
更新時間 | 2020-09-02 |
上架時間 | 2020-04-11 |
評分 | 5.00/5 共 2 次評分 |
開發者 | Patrik Gallik |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/patresk/consistency |
說明頁面URL | https://github.com/patresk/consistency/issues |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Consistency", "version": "0.3", "permissions": [ "storage" ], "description": "Consistency helps you to build your habits by blocking websites you don't want to visit.", "options_page": "options.html", "page_action": { "default_icon": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" } }, "icons": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start", "js": [ "contentScript.js" ] } ], "web_accessible_resources": [ "nono.html", "nono.js", "images\/logo.png", "lib\/moment.min.js" ], "manifest_version": 2 } |