Find URLs
Get a clickable list and a copy button of all URLs on the current page.
Qu'est-ce que Find URLs ?
Find URLs est une extension Chrome développée par hawks.theorem, et sa fonction principale est "Get a clickable list and a copy button of all URLs on the current page.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Find URLs
Téléchargez les fichiers d'extension Find URLs au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Find URLs |
ID | mbaojfojmofmeipeclfbkeghnfmkmbjl |
URL Officiel | https://chromewebstore.google.com/detail/find-urls/mbaojfojmofmeipeclfbkeghnfmkmbjl |
Description | Get a clickable list and a copy button of all URLs on the current page. |
Taille du Fichier | 13.49 KB |
Nombre d'Installations | 29 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2019-10-22 |
Date de Publication | 2019-10-21 |
Développeur | hawks.theorem |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } |