Notion Time Tracker
Add a Chronometer to your Notion Database Page
Cos'è Notion Time Tracker?
Notion Time Tracker è un'estensione di Chrome sviluppata da Anis Gad, e la sua funzione principale è "Add a Chronometer to your Notion Database Page".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Notion Time Tracker
Scarica i file di estensione Notion Time Tracker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
≡ 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.
Informazioni di Base sull'Estensione
Nome | |
ID | ihjgjhbdigphchkplmlkpmhncnmjhanp |
URL Ufficiale | https://chrome.google.com/webstore/detail/notion-time-tracker/ihjgjhbdigphchkplmlkpmhncnmjhanp |
Descrizione | Add a Chronometer to your Notion Database Page |
Dimensione del File | 24.07 KB |
Conteggio Installazioni | 2,667 |
Versione Corrente | 0.0.5 |
Ultimo Aggiornamento | 2021-03-22 |
Data di Pubblicazione | 2021-03-20 |
Valutazione | 3.33/5 Totale 21 Valutazioni |
Sviluppatore | Anis Gad |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://www.notion.so/Privacy-Policy-79e2d879b3d3405ba50e800a39fe25ec |
Lingue Supportate | 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'" } |