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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
개인정보 보호 정책 페이지 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'" } |