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文件

下载Visited Links Marker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
            ]
        }
    ]
}