Insert Timestamp
Insert Timestamp
Insert Timestamp क्या है?
Insert Timestamp Dave Xu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Insert Timestamp"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Insert Timestamp एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
2015-01-28 Dave Xu 1. better position selection 2. bigger numbers 3. bug fix : the clock cannot be seen on youtube web pages. 2015-01-21 Dave Xu This is a simple extention, will only inject real-time clock into current webpage. I develop it just for some tests, wish it could be helpful for other people.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | hojacnchclkfkdkcadnfogedeppclijb |
आधिकारिक URL | https://chrome.google.com/webstore/detail/insert-timestamp/hojacnchclkfkdkcadnfogedeppclijb |
विवरण | Insert Timestamp |
फ़ाइल का आकार | 8.5 KB |
स्थापना संख्या | 21 |
वर्तमान संस्करण | 1.1 |
अंतिम अपडेट | 2015-01-28 |
प्रकाशन तिथि | 2015-01-28 |
रेटिंग | 4.00/5 कुल 1 रेटिंग्स |
डेवलपर | Dave Xu |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://www.linkedin.com/in/yuandaxu |
सहायता पृष्ठ URL | http://xuyuanda.blogspot.com |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Insert Timestamp", "version": "1.1", "manifest_version": 2, "description": "Insert Timestamp", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "activeTab", "*:\/\/www.youtube.com\/*", "http:\/\/*\/*", "https:\/\/*\/*", "unlimitedStorage" ], "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "all_frames": false, "css": [ "show.css" ], "js": [ "cbd.js", "ccc.js" ], "run_at": "document_end" } ] } |