param appender
appends a configurable parameter to the url on url change
什麼是param appender?
param appender是由stupid cat開發的Chrome擴展程式,該擴展的主要功能是“appends a configurable parameter to the url on url change”。
擴展截圖
下載param appender擴展crx文件
下載param appender擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
appends a configurable parameter to the url on url change. the affected urls can be specified using a regex configuration. 擴展基本資訊
| 名稱 | |
| ID | dpodflepnifmnifholnajjffjmkolaae |
| 官方網址 | https://chromewebstore.google.com/detail/param-appender/dpodflepnifmnifholnajjffjmkolaae |
| 簡介 | appends a configurable parameter to the url on url change |
| 檔案大小 | 44.63 KB |
| 安裝次數 | 77 |
| 目前版本 | 1.5 |
| 更新時間 | 2020-08-31 |
| 上架時間 | 2020-03-08 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | stupid cat |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "param appender",
"short_name": "pappender",
"version": "1.5",
"description": "appends a configurable parameter to the url on url change",
"manifest_version": 2,
"background": {
"scripts": [
"scripts\/background.js"
]
},
"permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"storage",
"webRequest",
"webRequestBlocking"
],
"browser_action": {
"default_popup": "views\/popup.html",
"default_icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"options_page": "views\/options.html",
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
} | |