Visited Links Marker

Keep track of visited links from your history and don't read the same posts again.

Visited Links Marker란 무엇입니까?

Visited Links Marker은(는) Nathan Adamec에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Keep track of visited links from your history and don't read the same posts again."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Visited Links Marker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        WHAT DOES IT DO?
1. Visited Links Marker changes the color of the link that you have previously visited according to your browser history
2. you can choose any color
3. you can choose which websites the extension will run on

WHY IS IT USEFUL?
- If you read blogs, do research, watch videos etc., you will immediately see any articles or videos you have previously clicked on. So you don't have to consume them again.
- It will be easier to navigate the website because the links you often click on will be a different color so you'll see them immediately.

EXTENSION DEVELOPMENT
If you find a bug or have an idea for an improvement, I'd love to hear your recommendations. This is the first version and I want to improve it gradually.

If you'd like to contribute to this repository, feel free, just fork the project and make a pull request (https://github.com/nathandev33/Visited-Links-Marker)                    

확장 프로그램 기본 정보

이름 Visited Links Marker Visited Links Marker
ID nnkhkkkcmkcncmpigbhnlnblcmafjchm
공식 URL https://chromewebstore.google.com/detail/visited-links-marker/nnkhkkkcmkcncmpigbhnlnblcmafjchm
설명 Keep track of visited links from your history and don't read the same posts again.
파일 크기 692 KB
설치 횟수 740
현재 버전 1.0.0
최근 업데이트 2022-09-07
출시 날짜 2022-09-03
평점 4.22/5 총 9 개의 평점
개발자 Nathan Adamec
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/nathandev33/Visited-Links-Marker
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Visited Links Marker",
    "description": "Keep track of visited links from your history and don't read the same posts again.",
    "version": "1.0.0",
    "manifest_version": 3,
    "icons": {
        "16": "icon-16.png",
        "48": "icon-128.png",
        "128": "icon-128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Visited Links Marker",
        "default_icon": "icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}