Timestamp My Page
The extension adds timestamp to all your pages. That's it!
Timestamp My Page क्या है?
Timestamp My Page Viral Shah द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The extension adds timestamp to all your pages. That's it!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Timestamp My Page एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" } } |