Link Locator
Simply presents all the links in the current website
Co je Link Locator?
Link Locator je rozšíření Chrome vyvinuté sharon.medianmrkt, a jeho hlavní funkcí je „Simply presents all the links in the current website“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Link Locator
Stáhněte si soubory rozšíření Link Locator ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | ljfclipbaplebpphafkaihekkkaeabnh |
Oficiální URL | https://chrome.google.com/webstore/detail/link-locator/ljfclipbaplebpphafkaihekkkaeabnh |
Popis | Simply presents all the links in the current website |
Velikost souboru | 16.06 KB |
Počet instalací | 7,128 |
Aktuální Verze | 1 |
Poslední Aktualizace | 2022-12-28 |
Datum Vydání | 2022-12-28 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | sharon.medianmrkt |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://home.entunedanludb.com/ |
URL Stránky Nápovědy | https://home.entunedanludb.com/contact.html |
Podporované Jazyky | 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": [ "*:\/\/*\/*" ] } |