Notion Time Tracker
Add a Chronometer to your Notion Database Page
Apa itu Notion Time Tracker?
Notion Time Tracker adalah ekstensi Chrome yang dikembangkan oleh Anis Gad, dan fitur utamanya adalah "Add a Chronometer to your Notion Database Page".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Notion Time Tracker
Unduh file ekstensi Notion Time Tracker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
≡ 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.
Informasi Dasar Ekstensi
Nama | |
ID | ihjgjhbdigphchkplmlkpmhncnmjhanp |
URL Resmi | https://chrome.google.com/webstore/detail/notion-time-tracker/ihjgjhbdigphchkplmlkpmhncnmjhanp |
Deskripsi | Add a Chronometer to your Notion Database Page |
Ukuran File | 24.07 KB |
Jumlah Instalasi | 2,667 |
Versi Saat Ini | 0.0.5 |
Terakhir Diperbarui | 2021-03-22 |
Tanggal Publikasi | 2021-03-20 |
Penilaian | 3.33/5 Total 21 Penilaian |
Pengembang | Anis Gad |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Kebijakan Privasi | https://www.notion.so/Privacy-Policy-79e2d879b3d3405ba50e800a39fe25ec |
Bahasa yang Didukung | 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'" } |