Link Locator
Simply presents all the links in the current website
Что такое Link Locator?
Link Locator - это расширение Chrome, разработанное sharon.medianmrkt, и его основная функция - "Simply presents all the links in the current website".
Снимки экрана расширения
Скачать файл CRX расширения Link Locator
Скачайте файлы расширений Link Locator в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | |
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": [ "*:\/\/*\/*" ] } |