Attention
Watch your browsing habits and get reminded when wasting time.
Attentionとは何ですか?
AttentionはAlsonaxによって開発されたChromeの拡張機能で、その主な機能は「Watch your browsing habits and get reminded when wasting time.」です。
拡張機能のスクリーンショット
Attention拡張機能のCRXファイルをダウンロード
Attention拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Attention keeps track of the websites you visit and stops you from wasting lots of time on distracting websites. It doesn't block websites straight away, but shows a reminder which is impossible to ignore. - no setup required, just rate the websites you frequently visit - your browsing history is private, all data stays in the browser
拡張機能の基本情報
名前 | Attention |
ID | nmejnlclcnjakdbpfehhcobbmlcpbiba |
公式URL | https://chromewebstore.google.com/detail/attention/nmejnlclcnjakdbpfehhcobbmlcpbiba |
説明 | Watch your browsing habits and get reminded when wasting time. |
ファイルサイズ | 745 KB |
インストール数 | 289 |
現在のバージョン | 0.2.12 |
最終更新日 | 2015-01-11 |
公開日 | 2015-01-11 |
評価 | 4.00/5 合計 5 レビュー |
開発者 | Alsonax |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Attention", "version": "0.2.12", "manifest_version": 2, "description": "Watch your browsing habits and get reminded when wasting time.", "offline_enabled": true, "icons": { "16": "icons\/green-16.png", "48": "icons\/app-48.png", "128": "icons\/app-128.png" }, "background": { "scripts": [ "vendor\/moment\/moment.js", "src\/persistence\/options.js", "src\/persistence\/store.js", "src\/background\/background.js" ], "persistent": false }, "browser_action": { "default_icon": { "16": "icons\/gray-16.png" }, "default_title": "Attention" }, "options_page": "src\/options\/index.html", "permissions": [ "chrome:\/\/favicon\/", "storage", "tabs", "http:\/\/*\/", "https:\/\/*\/" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "src\/inject\/inject.css" ], "run_at": "document_start" }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "vendor\/zepto\/zepto.min.js", "src\/inject\/inject.js" ] } ], "web_accessible_resources": [ "src\/popup\/*", "test\/*", "icons\/*", "vendor\/*" ], "content_security_policy": "script-src 'self'; object-src 'self'" } |