Notion Time Tracker
Add a Chronometer to your Notion Database Page
Notion Time Trackerคืออะไร?
Notion Time Tracker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Anis Gad และคุณลักษณะหลักของมันคือ "Add a Chronometer to your Notion Database Page"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Notion Time Tracker
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
URL อย่างเป็นทางการ | 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'" } |