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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Keep track of visited links from your history and don't read the same posts again."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Visited Links Marker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}