LinkHistory
Show visited links
什麼是LinkHistory?
LinkHistory是由Xitake開發的Chrome擴展程式,該擴展的主要功能是“Show visited links”。
擴展截圖
下載LinkHistory擴展crx文件
下載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 |
官方網址 | 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" ] } |