Focus: A Simple Site Blocker
A Chrome Extension to help you focus.
什麼是Focus: A Simple Site Blocker?
Focus: A Simple Site Blocker是由rypan開發的Chrome擴展程式,該擴展的主要功能是“A Chrome Extension to help you focus.”。
擴展截圖
下載Focus: A Simple Site Blocker擴展crx文件
下載Focus: A Simple Site Blocker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Focus is a simple Chrome Extension that helps you focus by blocking a list of sites that you choose. 擴展基本資訊
| 名稱 | |
| ID | akghpofhgkghbnodfjfenhimdhajhpdh |
| 官方網址 | https://chromewebstore.google.com/detail/focus-a-simple-site-block/akghpofhgkghbnodfjfenhimdhajhpdh |
| 簡介 | A Chrome Extension to help you focus. |
| 檔案大小 | 35.24 KB |
| 安裝次數 | 382 |
| 目前版本 | 1.0.1 |
| 更新時間 | 2016-09-09 |
| 上架時間 | 2016-09-08 |
| 評分 | 3.40/5 共 10 次評分 |
| 開發者 | rypan |
| 付費類型 | free |
| 擴展官網 | https://github.com/rypan/focus |
| 說明頁面URL | https://github.com/rypan/focus/issues |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Focus: A Simple Site Blocker",
"short_name": "Focus",
"description": "A Chrome Extension to help you focus.",
"version": "1.0.1",
"permissions": [
"storage",
"webRequest",
"webRequestBlocking",
"*:\/\/*\/*"
],
"background": {
"persistent": true,
"scripts": [
"background.js"
]
},
"browser_action": {
"default_title": "Focus",
"default_popup": "popup.html",
"default_icon": "48.png"
},
"icons": {
"16": "16.png",
"48": "48.png",
"128": "128.png"
},
"manifest_version": 2,
"content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'"
} | |