Insert Timestamp
Insert Timestamp
Wat is Insert Timestamp?
Insert Timestamp is een Chrome-extensie ontwikkeld door Dave Xu, en de belangrijkste functie is "Insert Timestamp".
Extensie Screenshots
Download het CRX-bestand van de extensie Insert Timestamp
Download Insert Timestamp-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | hojacnchclkfkdkcadnfogedeppclijb |
Officiële URL | https://chrome.google.com/webstore/detail/insert-timestamp/hojacnchclkfkdkcadnfogedeppclijb |
Beschrijving | Insert Timestamp |
Bestandsgrootte | 8.5 KB |
Aantal Installaties | 21 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2015-01-28 |
Publicatiedatum | 2015-01-28 |
Beoordeling | 4.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Dave Xu |
Betalingswijze | free |
Extensiewebsite | http://www.linkedin.com/in/yuandaxu |
Help Pagina-URL | http://xuyuanda.blogspot.com |
Ondersteunde Talen | 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" } ] } |