Find URLs
Get a clickable list and a copy button of all URLs on the current page.
O que é Find URLs?
Find URLs é uma extensão do Chrome desenvolvida por hawks.theorem, e sua principal característica é "Get a clickable list and a copy button of all URLs on the current page.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Find URLs
Baixe arquivos de extensão Find URLs 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
Click the "Find URLs" icon next to the address bar and get a list over all the URLs used on the current website. You will be able to click on the links and copy or download a list of all the URLs. Credits: Photo by Chase Clark on Unsplash Icons made by "https://www.flaticon.com/authors/alfredo-hernandez" https://www.npmjs.com/package/valid-url
Informações Básicas da Extensão
Nome | Find URLs |
ID | mbaojfojmofmeipeclfbkeghnfmkmbjl |
URL Oficial | https://chromewebstore.google.com/detail/find-urls/mbaojfojmofmeipeclfbkeghnfmkmbjl |
Descrição | Get a clickable list and a copy button of all URLs on the current page. |
Tamanho do Arquivo | 13.49 KB |
Contagem de Instalações | 29 |
Versão Atual | 1.0.0 |
Última Atualização | 2019-10-22 |
Data de Publicação | 2019-10-21 |
Desenvolvedor | hawks.theorem |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Find URLs", "version": "1.0.0", "description": "Get a clickable list and a copy button of all URLs on the current page.", "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ], "browser_action": { "default_title": "Find URLs!", "default_icon": { "16": "www16.png", "32": "www32.png", "64": "www64.png", "128": "www128.png" }, "default_popup": "popup.html" }, "icons": { "16": "www16.png", "32": "www32.png", "64": "www64.png", "128": "www128.png" }, "permissions": [ "declarativeContent", "activeTab" ], "manifest_version": 2 } |