Notion Time Tracker
Add a Chronometer to your Notion Database Page
ما هو Notion Time Tracker؟
Notion Time Tracker هو إضافة Chrome تم تطويرها بواسطة Anis Gad، والميزة الرئيسية لها هي "Add a Chronometer to your Notion Database Page".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Notion Time Tracker
قم بتنزيل ملفات الامتداد Notion Time Tracker بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
≡ 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.
معلومات أساسية عن التمديد
الاسم | |
ID | ihjgjhbdigphchkplmlkpmhncnmjhanp |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/notion-time-tracker/ihjgjhbdigphchkplmlkpmhncnmjhanp |
الوصف | Add a Chronometer to your Notion Database Page |
حجم الملف | 24.07 KB |
عدد التثبيتات | 2,667 |
النسخة الحالية | 0.0.5 |
آخر تحديث | 2021-03-22 |
تاريخ النشر | 2021-03-20 |
تقييم | 3.33/5 مجموع تقييمات 21 |
المطور | Anis Gad |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة سياسة الخصوصية | https://www.notion.so/Privacy-Policy-79e2d879b3d3405ba50e800a39fe25ec |
اللغات المدعومة | 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'" } |