LinkHistory
Show visited links
LinkHistory란 무엇입니까?
LinkHistory은(는) Xitake에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show visited links"입니다.
확장 프로그램 스크린샷
LinkHistory 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |