Notion Time Tracker
Add a Chronometer to your Notion Database Page
Vad är Notion Time Tracker?
Notion Time Tracker är en Chrome-tillägg utvecklad av Anis Gad, och dess huvudfunktion är "Add a Chronometer to your Notion Database Page".
Tilläggsskärmbilder
Ladda ner Notion Time Tracker-förlängningens CRX-fil
Ladda ner Notion Time Tracker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
≡ 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.
Grundläggande Information om Tillägg
Namn | |
ID | ihjgjhbdigphchkplmlkpmhncnmjhanp |
Officiell webbadress | https://chrome.google.com/webstore/detail/notion-time-tracker/ihjgjhbdigphchkplmlkpmhncnmjhanp |
Beskrivning | Add a Chronometer to your Notion Database Page |
Filstorlek | 24.07 KB |
Antal Installationer | 2,667 |
Aktuell Version | 0.0.5 |
Senast Uppdaterad | 2021-03-22 |
Publiceringsdatum | 2021-03-20 |
Betyg | 3.33/5 Totalt 21 Betyg |
Utvecklare | Anis Gad |
E-post | [email protected] |
Betalningssätt | free |
URL till Sekretesspolicy Sidan | https://www.notion.so/Privacy-Policy-79e2d879b3d3405ba50e800a39fe25ec |
Stödda Språk | 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'" } |