Notion Time Tracker
Add a Chronometer to your Notion Database Page
什麼是Notion Time Tracker?
Notion Time Tracker是由Anis Gad開發的Chrome擴展程式,該擴展的主要功能是“Add a Chronometer to your Notion Database Page”。
擴展截圖
下載Notion Time Tracker擴展crx文件
下載Notion Time Tracker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
≡ Usage Please See the tutorial by clicking on the popup icon. ≡ Contact You have an issue or want to give a feedback / suggestion? Drop me an email :) ≡ Privacy The extension does NOT collect any data or send data to third party.
擴展基本資訊
名稱 | |
ID | ihjgjhbdigphchkplmlkpmhncnmjhanp |
官方網址 | https://chrome.google.com/webstore/detail/notion-time-tracker/ihjgjhbdigphchkplmlkpmhncnmjhanp |
簡介 | Add a Chronometer to your Notion Database Page |
檔案大小 | 24.07 KB |
安裝次數 | 2,667 |
目前版本 | 0.0.5 |
更新時間 | 2021-03-22 |
上架時間 | 2021-03-20 |
評分 | 3.33/5 共 21 次評分 |
開發者 | Anis Gad |
電子郵箱 | [email protected] |
付費類型 | free |
隱私政策頁面URL | https://www.notion.so/Privacy-Policy-79e2d879b3d3405ba50e800a39fe25ec |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Notion Time Tracker", "version": "0.0.5", "manifest_version": 2, "description": "Add a Chronometer to your Notion Database Page", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.notion.so\/*" ], "css": [], "js": [ "main.js" ] } ], "permissions": [ "storage", "activeTab", "https:\/\/*.notion.so\/*", "cookies" ], "web_accessible_resources": [ "images\/*" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_popup": "popup.html", "default_title": "Notion Time Tracker" }, "content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-...='; object-src 'self'" } |