Insert Timestamp
Insert Timestamp
Vad är Insert Timestamp?
Insert Timestamp är en Chrome-tillägg utvecklad av Dave Xu, och dess huvudfunktion är "Insert Timestamp".
Tilläggsskärmbilder
Ladda ner Insert Timestamp-förlängningens CRX-fil
Ladda ner Insert Timestamp-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | hojacnchclkfkdkcadnfogedeppclijb |
Officiell webbadress | https://chrome.google.com/webstore/detail/insert-timestamp/hojacnchclkfkdkcadnfogedeppclijb |
Beskrivning | Insert Timestamp |
Filstorlek | 8.5 KB |
Antal Installationer | 21 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2015-01-28 |
Publiceringsdatum | 2015-01-28 |
Betyg | 4.00/5 Totalt 1 Betyg |
Utvecklare | Dave Xu |
Betalningssätt | free |
Tilläggswebbplats | http://www.linkedin.com/in/yuandaxu |
Hjälpsida URL | http://xuyuanda.blogspot.com |
Stödda Språk | 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" } ] } |