LinkHistory
Show visited links
LinkHistoryคืออะไร?
LinkHistory เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Xitake และคุณลักษณะหลักของมันคือ "Show visited links"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย LinkHistory
ดาวน์โหลดไฟล์ส่วนขยาย LinkHistory ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
LinkHistory lets you remember last date and time of visited link, and show you the date of the first and last visit in addition to the number of vists so far. Remember also that in the control panel you can select the color of visited links, enable or disable the balloon text and delete the history of visited links.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | kkfohjphkeplcjojeiannnmbhflimpae |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/linkhistory/kkfohjphkeplcjojeiannnmbhflimpae |
คำอธิบาย | Show visited links |
ขนาดไฟล์ | 106 KB |
จำนวนการติดตั้ง | 546 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2016-09-24 |
วันที่เผยแพร่ | 2016-09-24 |
คะแนน | 4.71/5 รวมทั้งหมด 7 คะแนน |
ผู้พัฒนา | Xitake |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://www.xitake.com |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "LinkHistory", "version": "1.1", "description": "Show visited links", "icons": { "32": "img\/icon32.png", "48": "img\/icon48.png", "64": "img\/icon64.png", "128": "img\/icon128.png", "256": "img\/icon256.png" }, "background": { "scripts": [ "js\/jquery-2.2.3.min.js", "js\/background.js" ] }, "browser_action": { "default_title": "LinkHistory", "default_icon": "img\/icon128.png", "default_popup": "popup.html" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "*:\/\/*\/*" ], "js": [ "js\/jquery-2.2.3.min.js", "js\/script.js" ], "css": [ "css\/style.css" ] } ], "permissions": [ "tabs", "storage" ] } |