Notion Time Tracker
Add a Chronometer to your Notion Database Page
Qu'est-ce que Notion Time Tracker ?
Notion Time Tracker est une extension Chrome développée par Anis Gad, et sa fonction principale est "Add a Chronometer to your Notion Database Page".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Notion Time Tracker
Téléchargez les fichiers d'extension Notion Time Tracker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
≡ 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.
Informations de Base sur l'Extension
Nom | |
ID | ihjgjhbdigphchkplmlkpmhncnmjhanp |
URL Officiel | https://chrome.google.com/webstore/detail/notion-time-tracker/ihjgjhbdigphchkplmlkpmhncnmjhanp |
Description | Add a Chronometer to your Notion Database Page |
Taille du Fichier | 24.07 KB |
Nombre d'Installations | 2,667 |
Version Actuelle | 0.0.5 |
Dernière Mise à Jour | 2021-03-22 |
Date de Publication | 2021-03-20 |
Évaluation | 3.33/5 Total 21 Évaluations |
Développeur | Anis Gad |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://www.notion.so/Privacy-Policy-79e2d879b3d3405ba50e800a39fe25ec |
Langues Prises en Charge | 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'" } |