Insert Timestamp
Insert Timestamp
What is Insert Timestamp?
Insert Timestamp is a Chrome extension developed by Dave Xu, and its main feature is "Insert Timestamp".
Extension Screenshots
Download Insert Timestamp Extension CRX File
Download Insert Timestamp extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | hojacnchclkfkdkcadnfogedeppclijb |
Official URL | https://chrome.google.com/webstore/detail/insert-timestamp/hojacnchclkfkdkcadnfogedeppclijb |
Description | Insert Timestamp |
File Size | 8.5 KB |
Installation Count | 21 |
Current Version | 1.1 |
Last Updated | 2015-01-28 |
Publish Date | 2015-01-28 |
Rating | 4.00/5 Total 1 Ratings |
Developer | Dave Xu |
Payment Type | free |
Extension Website | http://www.linkedin.com/in/yuandaxu |
Help Page URL | http://xuyuanda.blogspot.com |
Supported Languages | 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" } ] } |