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
官方網址 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"
        }
    ]
}