Timestamp My Page

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

Timestamp My Pageคืออะไร?

Timestamp My Page เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Viral Shah และคุณลักษณะหลักของมันคือ "The extension adds timestamp to all your pages. That's it!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Timestamp My Page

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    }
}