getURL - Link Parameter Extractor

getURL extracts the query parameters of the clicked link and displays them in a popup table.

getURL - Link Parameter Extractor là gì?

getURL - Link Parameter Extractor là một tiện ích mở rộng Chrome được phát triển bởi https://www.stuartd.co.uk, và tính năng chính của nó là "getURL extracts the query parameters of the clicked link and displays them in a popup table.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng getURL - Link Parameter Extractor

Tải xuống các tệp mở rộng getURL - Link Parameter Extractor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên getURL - Link Parameter Extractor getURL - Link Parameter Extractor
ID kindcepkhhhkoofimgndkdbhkfechfon
URL Chính Thức https://chromewebstore.google.com/detail/geturl-link-parameter-ext/kindcepkhhhkoofimgndkdbhkfechfon
Mô tả getURL extracts the query parameters of the clicked link and displays them in a popup table.
Kích Thước Tệp 42.2 KB
Số Lần Cài Đặt 647
Phiên Bản Hiện Tại 1.0.9
Cập Nhật Lần Cuối 2021-02-22
Ngày Phát Hành 2018-07-15
Đánh Giá 4.11/5 Tổng số 9 Đánh Giá
Nhà Phát Triển https://www.stuartd.co.uk
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.stuartd.co.uk
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}