Insert Timestamp

Insert Timestamp

什么是Insert Timestamp?

Insert Timestamp是由Dave Xu开发的Chrome扩展程序,该扩展的主要功能是“Insert Timestamp”。

扩展截图

screenshot
screenshot
screenshot

下载Insert Timestamp扩展crx文件

下载Insert Timestamp扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Insert Timestamp Insert Timestamp
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"
        }
    ]
}