Insert Timestamp
Insert Timestamp
Insert Timestampคืออะไร?
Insert Timestamp เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dave Xu และคุณลักษณะหลักของมันคือ "Insert Timestamp"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Insert Timestamp
ดาวน์โหลดไฟล์ส่วนขยาย 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" } ] } |