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”。

扩展截图

screenshot
screenshot

下载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.                    

扩展基本信息

名称 param appender param appender
ID dpodflepnifmnifholnajjffjmkolaae
官方URL 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'"
}