getURL - Link Parameter Extractor
getURL extracts the query parameters of the clicked link and displays them in a popup table.
getURL - Link Parameter Extractor क्या है?
getURL - Link Parameter Extractor https://www.stuartd.co.uk द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "getURL extracts the query parameters of the clicked link and displays them in a popup table."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में getURL - Link Parameter Extractor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
About getURL getURL extracts the values of the clicked link and displays them in a popup table. This tool makes it simpler to test and see the values presented as the query string. --- How does it work? It's as simple as Right Click > getURL. Open up the Extension popup window and you will be greeted with the parameters in a nicely formatted table. You can now even export the parameters to both CSV and TSV format, simply visit the Export Tab. --- Version: 1.0.9 - Added settings system. - Added DevTools functionality from GitHub merge request. Version: 1.0.8 - Updated the overall styling of the extension. - Added a multiple tab system to see different sections of the extension. - Added export functionality to both Tab and CSV. - Added a new "Full URL" preview on the getURL tab, this will show the full URL without the need to select or alter the query parameters. General code clean up.
एक्सटेंशन की मूल जानकारी
नाम | getURL - Link Parameter Extractor |
ID | kindcepkhhhkoofimgndkdbhkfechfon |
आधिकारिक URL | https://chromewebstore.google.com/detail/geturl-link-parameter-ext/kindcepkhhhkoofimgndkdbhkfechfon |
विवरण | getURL extracts the query parameters of the clicked link and displays them in a popup table. |
फ़ाइल का आकार | 42.2 KB |
स्थापना संख्या | 647 |
वर्तमान संस्करण | 1.0.9 |
अंतिम अपडेट | 2021-02-22 |
प्रकाशन तिथि | 2018-07-15 |
रेटिंग | 4.11/5 कुल 9 रेटिंग्स |
डेवलपर | https://www.stuartd.co.uk |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.stuartd.co.uk |
समर्थित भाषाएँ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "getURL - Link Parameter Extractor", "description": "getURL extracts the query parameters of the clicked link and displays them in a popup table.", "short_name": "getURL", "version": "1.0.9", "author": "StuartD - www.stuartd.co.uk", "incognito": "not_allowed", "permissions": [ "contextMenus", "storage" ], "background": { "persistent": false, "scripts": [ "js\/background.js" ] }, "devtools_page": "devtools.html", "manifest_version": 2, "icons": { "16": "img\/favicon.png", "48": "img\/favicon.png", "128": "img\/favicon.png" }, "browser_action": { "default_icon": "img\/favicon.png", "default_title": "getURL - Link Parameter Extractor", "default_popup": "popup.html" } } |