Pomodoro Chrome Extension
This simple plugin is based on The Pomodoro Technique, which is is a popular time management method.
什麼是Pomodoro Chrome Extension?
Pomodoro Chrome Extension是由https://bashvlas.com開發的Chrome擴展程式,該擴展的主要功能是“This simple plugin is based on The Pomodoro Technique, which is is a popular time management method.”。
擴展截圖
下載Pomodoro Chrome Extension擴展crx文件
下載Pomodoro Chrome Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Pomodoro Chrome Extension gives you a simple user-friendly timer interface to utilize the pomodoro method. Here is how to use it: 1. Click on the browser action icon. 2. Select number of minutes for the deep work session. 3. Work for the selected number of minutes :) The extension does not require registration, it requires minimal permissions, and does not store your data. It's open source: https://github.com/bashvlas/pomodoro-chrome-extension
擴展基本資訊
名稱 | Pomodoro Chrome Extension |
ID | iccjkhpkdhdhjiaocipcegfeoclioejn |
官方網址 | https://chromewebstore.google.com/detail/pomodoro-chrome-extension/iccjkhpkdhdhjiaocipcegfeoclioejn |
簡介 | This simple plugin is based on The Pomodoro Technique, which is is a popular time management method. |
檔案大小 | 74.6 KB |
安裝次數 | 9,411 |
目前版本 | 1.0.0 |
更新時間 | 2020-03-25 |
上架時間 | 2020-03-25 |
評分 | 4.83/5 共 12 次評分 |
開發者 | https://bashvlas.com |
電子郵箱 | [email protected] |
付費類型 | free |
隱私政策頁面URL | https://bashvlas.com/pomodoro-chrome-extension-privacy-policy |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pomodoro Chrome Extension", "short_name": "Pomodoro", "version": "1.0.0", "description": "This simple plugin is based on The Pomodoro Technique, which is is a popular time management method.", "icons": { "128": "\/img\/logo_red_128.png" }, "browser_action": { "default_icon": "\/img\/logo_red_19.png", "default_popup": "\/pages\/popup\/index.html" }, "background": { "persistent": false, "scripts": [ "\/js\/background.js" ] }, "permissions": [ "storage" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |