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
公式URL 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
Eメール [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"
    }
}