Notion Time Tracker
Add a Chronometer to your Notion Database Page
Was ist Notion Time Tracker?
Notion Time Tracker ist eine Chrome-Erweiterung, die von Anis Gad entwickelt wurde, und ihr Hauptmerkmal ist "Add a Chronometer to your Notion Database Page".
Erweiterungsscreenshots
Notion Time Tracker-Erweiterungs-CRX-Datei herunterladen
Laden Sie Notion Time Tracker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
≡ 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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ihjgjhbdigphchkplmlkpmhncnmjhanp |
| Offizielle URL | https://chrome.google.com/webstore/detail/notion-time-tracker/ihjgjhbdigphchkplmlkpmhncnmjhanp |
| Beschreibung | Add a Chronometer to your Notion Database Page |
| Dateigröße | 24.07 KB |
| Installationsanzahl | 2,667 |
| Aktuelle Version | 0.0.5 |
| Letztes Update | 2021-03-22 |
| Veröffentlichungsdatum | 2021-03-20 |
| Bewertung | 3.33/5 Insgesamt 21 Bewertungen |
| Entwickler | Anis Gad |
| [email protected] | |
| Zahlungsart | free |
| URL der Datenschutzrichtlinien-Seite | https://www.notion.so/Privacy-Policy-79e2d879b3d3405ba50e800a39fe25ec |
| Unterstützte Sprachen | 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'"
} | |