Focus
Extension to stop procrastination.
什麼是Focus?
Focus是由Oliver Song開發的Chrome擴展程式,該擴展的主要功能是“Extension to stop procrastination.”。
擴展截圖
下載Focus擴展crx文件
下載Focus擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Stops you from using sites that waste your time. Update 1.1 Doesn't use Jquery! Update 1.2 Chrome store policies, more sites, better wording. Update 1.3 Manifest v3, fix Google Docs Update 1.4 Small bugfix
擴展基本資訊
名稱 | Focus |
ID | iadpfonbgmlpndbfnhcmpnlcdahgbkbc |
官方網址 | https://chromewebstore.google.com/detail/focus/iadpfonbgmlpndbfnhcmpnlcdahgbkbc |
簡介 | Extension to stop procrastination. |
檔案大小 | 70.69 KB |
安裝次數 | 22 |
目前版本 | 1.4 |
更新時間 | 2022-12-09 |
上架時間 | 2012-11-24 |
評分 | 2.75/5 共 4 次評分 |
開發者 | Oliver Song |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Focus", "version": "1.4", "manifest_version": 3, "description": "Extension to stop procrastination.", "background": { "service_worker": "background.js" }, "icons": { "16": "icon2.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [], "action": { "name": "Focus", "default_icon": "icon.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "exclude_matches": [ "https:\/\/*.google.com\/*" ], "js": [ "contentscript.js" ] } ], "web_accessible_resources": [ { "resources": [ "script.js", "shoop.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |