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.”。
擴展截圖
下載getURL - Link Parameter Extractor擴展crx文件
下載getURL - Link Parameter Extractor擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | kindcepkhhhkoofimgndkdbhkfechfon |
| 官方網址 | 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"
}
} | |