Link Locator

Simply presents all the links in the current website

Wat is Link Locator?

Link Locator is een Chrome-extensie ontwikkeld door sharon.medianmrkt, en de belangrijkste functie is "Simply presents all the links in the current website".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Link Locator

Download Link Locator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Link Locator Link Locator
ID ljfclipbaplebpphafkaihekkkaeabnh
Officiële URL https://chrome.google.com/webstore/detail/link-locator/ljfclipbaplebpphafkaihekkkaeabnh
Beschrijving Simply presents all the links in the current website
Bestandsgrootte 16.06 KB
Aantal Installaties 7,128
Huidige Versie 1
Laatst Bijgewerkt 2022-12-28
Publicatiedatum 2022-12-28
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar sharon.medianmrkt
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://home.entunedanludb.com/
Help Pagina-URL https://home.entunedanludb.com/contact.html
Ondersteunde Talen 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": [
        "*:\/\/*\/*"
    ]
}