Timestamp My Page

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

什麼是Timestamp My Page?

Timestamp My Page是由Viral Shah開發的Chrome擴展程式,該擴展的主要功能是“The extension adds timestamp to all your pages. That's it!”。

擴展截圖

screenshot
screenshot

下載Timestamp My Page擴展crx文件

下載Timestamp My Page擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Timestamp My Page Timestamp My Page
ID mpajpafkmlfpgibikbbfadimgdciikan
官方網址 https://chromewebstore.google.com/detail/timestamp-my-page/mpajpafkmlfpgibikbbfadimgdciikan
簡介 The extension adds timestamp to all your pages. That's it!
檔案大小 174 KB
安裝次數 628
目前版本 1.0.1
更新時間 2022-05-05
上架時間 2016-05-03
評分 5.00/5 共 1 次評分
開發者 Viral Shah
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    }
}