Link Control

Link control lets you adjust the color of your previously viewed links.

Link Control란 무엇입니까?

Link Control은(는) John Datserakis에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Link control lets you adjust the color of your previously viewed links."입니다.

확장 프로그램 스크린샷

screenshot

Link Control 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        No more trying to tell the difference between blue and dark-purple at 2AM with NightShift on. 

Easily change the color of your previously visited links using the predefined colors or choose your own. Use the included blacklist to prevent Link Control from running on certain sites.

Good for users who have a tough time with colors or are color-blind - as you can choose exactly the color you want. For me I work a lot at night and have a tough time distinguishing the colors of regular links vs visited links. It started costing me time so I decided I would make this extension to help out.

# Update - v1.1.0 - 04-06-2019
- Added editing of blacklist.
- Added button to add current URL to blacklist.
- Adjusted styling.                    

확장 프로그램 기본 정보

이름 Link Control Link Control
ID dibehcgiapedhoehgpinmkdmahlheekc
공식 URL https://chromewebstore.google.com/detail/link-control/dibehcgiapedhoehgpinmkdmahlheekc
설명 Link control lets you adjust the color of your previously viewed links.
파일 크기 1.34 MB
설치 횟수 8,070
현재 버전 1.1.3
최근 업데이트 2021-03-25
출시 날짜 2019-04-05
평점 4.33/5 총 54 개의 평점
개발자 John Datserakis
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.innermonkdesign.com
도움말 페이지 URL https://www.innermonkdesign.com
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Link Control",
    "version": "1.1.3",
    "description": "Link control lets you adjust the color of your previously viewed links.",
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Link Control"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "128": "app-icon.png"
    },
    "web_accessible_resources": [],
    "manifest_version": 2,
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "53.0"
        }
    }
}