Find URLs
Get a clickable list and a copy button of all URLs on the current page.
Find URLs क्या है?
Find URLs hawks.theorem द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Get a clickable list and a copy button of all URLs on the current page."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Find URLs एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | Find URLs |
ID | mbaojfojmofmeipeclfbkeghnfmkmbjl |
आधिकारिक URL | https://chromewebstore.google.com/detail/find-urls/mbaojfojmofmeipeclfbkeghnfmkmbjl |
विवरण | Get a clickable list and a copy button of all URLs on the current page. |
फ़ाइल का आकार | 13.49 KB |
स्थापना संख्या | 29 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2019-10-22 |
प्रकाशन तिथि | 2019-10-21 |
डेवलपर | hawks.theorem |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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 } |