Link Locator

Simply presents all the links in the current website

Link Locator क्या है?

Link Locator sharon.medianmrkt द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simply presents all the links in the current website"।

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

screenshot

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

crx प्रारूप में Link Locator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Link Locator is a browser extension that makes it easy for users to access all of the links on a website. With just a single click, the extension opens a pop-up window containing a list of all the links on the current webpage. This can be useful for websites with a large number of links, as it allows users to easily find and navigate to the content they are interested in. Link Locator also helps users discover new and interesting content on a website that they may not have been aware of before. Simply install the extension and click the icon to open the link list whenever you need it.                    

एक्सटेंशन की मूल जानकारी

नाम Link Locator Link Locator
ID ljfclipbaplebpphafkaihekkkaeabnh
आधिकारिक URL https://chrome.google.com/webstore/detail/link-locator/ljfclipbaplebpphafkaihekkkaeabnh
विवरण Simply presents all the links in the current website
फ़ाइल का आकार 16.06 KB
स्थापना संख्या 7,128
वर्तमान संस्करण 1
अंतिम अपडेट 2022-12-28
प्रकाशन तिथि 2022-12-28
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर sharon.medianmrkt
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://home.entunedanludb.com/
सहायता पृष्ठ URL https://home.entunedanludb.com/contact.html
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_icon": "logo.png",
        "default_title": "Link Locator",
        "default_popup": "popup.html"
    },
    "description": "Simply presents all the links in the current website",
    "icons": {
        "128": "logo.png"
    },
    "manifest_version": 3,
    "name": "Link Locator",
    "version": "1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*.svg"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}