Link Locator

Simply presents all the links in the current website

O que é Link Locator?

Link Locator é uma extensão do Chrome desenvolvida por sharon.medianmrkt, e sua principal característica é "Simply presents all the links in the current website".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Link Locator

Baixe arquivos de extensão Link Locator no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Link Locator Link Locator
ID ljfclipbaplebpphafkaihekkkaeabnh
URL Oficial https://chrome.google.com/webstore/detail/link-locator/ljfclipbaplebpphafkaihekkkaeabnh
Descrição Simply presents all the links in the current website
Tamanho do Arquivo 16.06 KB
Contagem de Instalações 7,128
Versão Atual 1
Última Atualização 2022-12-28
Data de Publicação 2022-12-28
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor sharon.medianmrkt
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://home.entunedanludb.com/
URL da Página de Ajuda https://home.entunedanludb.com/contact.html
Idiomas Suportados 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": [
        "*:\/\/*\/*"
    ]
}