Insert Timestamp
Insert Timestamp
Insert Timestampとは何ですか?
Insert TimestampはDave Xuによって開発されたChromeの拡張機能で、その主な機能は「Insert Timestamp」です。
拡張機能のスクリーンショット
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.
拡張機能の基本情報
名前 | |
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" } ] } |