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 |
公式URL | 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 |
Eメール | [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 } |