Timestamp My Page

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

Was ist Timestamp My Page?

Timestamp My Page ist eine Chrome-Erweiterung, die von Viral Shah entwickelt wurde, und ihr Hauptmerkmal ist "The extension adds timestamp to all your pages. That's it!".

Erweiterungsscreenshots

screenshot
screenshot

Timestamp My Page-Erweiterungs-CRX-Datei herunterladen

Laden Sie Timestamp My Page-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Timestamp My Page Timestamp My Page
ID mpajpafkmlfpgibikbbfadimgdciikan
Offizielle URL https://chromewebstore.google.com/detail/timestamp-my-page/mpajpafkmlfpgibikbbfadimgdciikan
Beschreibung The extension adds timestamp to all your pages. That's it!
Dateigröße 174 KB
Installationsanzahl 628
Aktuelle Version 1.0.1
Letztes Update 2022-05-05
Veröffentlichungsdatum 2016-05-03
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Viral Shah
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}