Notion Time Tracker

Add a Chronometer to your Notion Database Page

Notion Time Tracker là gì?

Notion Time Tracker là một tiện ích mở rộng Chrome được phát triển bởi Anis Gad, và tính năng chính của nó là "Add a Chronometer to your Notion Database Page".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Notion Time Tracker

Tải xuống các tệp mở rộng Notion Time Tracker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        ≡ 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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Notion Time Tracker Notion Time Tracker
ID ihjgjhbdigphchkplmlkpmhncnmjhanp
URL Chính Thức https://chrome.google.com/webstore/detail/notion-time-tracker/ihjgjhbdigphchkplmlkpmhncnmjhanp
Mô tả Add a Chronometer to your Notion Database Page
Kích Thước Tệp 24.07 KB
Số Lần Cài Đặt 2,667
Phiên Bản Hiện Tại 0.0.5
Cập Nhật Lần Cuối 2021-03-22
Ngày Phát Hành 2021-03-20
Đánh Giá 3.33/5 Tổng số 21 Đánh Giá
Nhà Phát Triển Anis Gad
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://www.notion.so/Privacy-Policy-79e2d879b3d3405ba50e800a39fe25ec
Ngôn Ngữ Được Hỗ Trợ 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'"
}