Link Locator

Simply presents all the links in the current website

Was ist Link Locator?

Link Locator ist eine Chrome-Erweiterung, die von sharon.medianmrkt entwickelt wurde, und ihr Hauptmerkmal ist "Simply presents all the links in the current website".

Erweiterungsscreenshots

screenshot

Link Locator-Erweiterungs-CRX-Datei herunterladen

Laden Sie Link Locator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Link Locator Link Locator
ID ljfclipbaplebpphafkaihekkkaeabnh
Offizielle URL https://chrome.google.com/webstore/detail/link-locator/ljfclipbaplebpphafkaihekkkaeabnh
Beschreibung Simply presents all the links in the current website
Dateigröße 16.06 KB
Installationsanzahl 7,128
Aktuelle Version 1
Letztes Update 2022-12-28
Veröffentlichungsdatum 2022-12-28
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler sharon.medianmrkt
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://home.entunedanludb.com/
Hilfeseite URL https://home.entunedanludb.com/contact.html
Unterstützte Sprachen 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": [
        "*:\/\/*\/*"
    ]
}