Timestamp My Page

The extension adds timestamp to all your pages. That's it!

Timestamp My Page là gì?

Timestamp My Page là một tiện ích mở rộng Chrome được phát triển bởi Viral Shah, và tính năng chính của nó là "The extension adds timestamp to all your pages. That's it!".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Timestamp My Page

Tải xuống các tệp mở rộng Timestamp My Page 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

                        Click on the extension icon to show/hide current date-time on all your pages.
Other Features:
drag around the timestamp anywhere on page
control color, opacity
control date time display format, timezone                    

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

Tên Timestamp My Page Timestamp My Page
ID mpajpafkmlfpgibikbbfadimgdciikan
URL Chính Thức https://chromewebstore.google.com/detail/timestamp-my-page/mpajpafkmlfpgibikbbfadimgdciikan
Mô tả The extension adds timestamp to all your pages. That's it!
Kích Thước Tệp 174 KB
Số Lần Cài Đặt 628
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2022-05-05
Ngày Phát Hành 2016-05-03
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Viral Shah
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Timestamp My Page",
    "description": "The extension adds timestamp to all your pages. That's it!",
    "version": "1.0.1",
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "action": {
        "default_icon": "images\/icon_128.png",
        "default_title": "Timestamp My Page"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "options_page": "pages\/options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/lib\/jquery-2.1.3.js",
                "js\/lib\/jquery-ui.min.js",
                "js\/lib\/moment.js",
                "js\/lib\/timezones.js",
                "js\/lib\/moment-timezone-with-data.js",
                "js\/cs.js"
            ],
            "css": [
                "css\/cs.css"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "images\/icon_128.png"
    }
}