Timestamp My Page
The extension adds timestamp to all your pages. That's it!
Apa itu Timestamp My Page?
Timestamp My Page adalah ekstensi Chrome yang dikembangkan oleh Viral Shah, dan fitur utamanya adalah "The extension adds timestamp to all your pages. That's it!".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Timestamp My Page
Unduh file ekstensi Timestamp My Page dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Timestamp My Page |
ID | mpajpafkmlfpgibikbbfadimgdciikan |
URL Resmi | https://chromewebstore.google.com/detail/timestamp-my-page/mpajpafkmlfpgibikbbfadimgdciikan |
Deskripsi | The extension adds timestamp to all your pages. That's it! |
Ukuran File | 174 KB |
Jumlah Instalasi | 628 |
Versi Saat Ini | 1.0.1 |
Terakhir Diperbarui | 2022-05-05 |
Tanggal Publikasi | 2016-05-03 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | Viral Shah |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" } } |