Insert Timestamp
Insert Timestamp
Cos'è Insert Timestamp?
Insert Timestamp è un'estensione di Chrome sviluppata da Dave Xu, e la sua funzione principale è "Insert Timestamp".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Insert Timestamp
Scarica i file di estensione Insert Timestamp in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | hojacnchclkfkdkcadnfogedeppclijb |
URL Ufficiale | https://chrome.google.com/webstore/detail/insert-timestamp/hojacnchclkfkdkcadnfogedeppclijb |
Descrizione | Insert Timestamp |
Dimensione del File | 8.5 KB |
Conteggio Installazioni | 21 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2015-01-28 |
Data di Pubblicazione | 2015-01-28 |
Valutazione | 4.00/5 Totale 1 Valutazioni |
Sviluppatore | Dave Xu |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://www.linkedin.com/in/yuandaxu |
URL della Pagina di Aiuto | http://xuyuanda.blogspot.com |
Lingue Supportate | 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" } ] } |