Notion Time Tracker
Add a Chronometer to your Notion Database Page
Notion Time Trackerとは何ですか?
Notion Time TrackerはAnis Gadによって開発されたChromeの拡張機能で、その主な機能は「Add a Chronometer to your Notion Database Page」です。
拡張機能のスクリーンショット
Notion Time Tracker拡張機能のCRXファイルをダウンロード
Notion Time Tracker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
≡ 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 |
| Eメール | [email protected] |
| 支払い方法 | free |
| プライバシーポリシーページのURL | 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'"
} | |