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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "getURL extracts the query parameters of the clicked link and displays them in a popup table."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

getURL - Link Parameter Extractor 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
    }
}