Query URL

Update url and links with custom query on the fly.

什么是Query URL?

Query URL是由crohrefdev开发的Chrome扩展程序,该扩展的主要功能是“Update url and links with custom query on the fly.”。

扩展截图

screenshot

下载Query URL扩展crx文件

下载Query URL扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Query URL extension resolves url custom queries. Simply add query or hash and extension will update url with defined query for you. Every html  tag will be updated with you query so that you do not need to add it manually to every link you follow.                    

扩展基本信息

名称 Query URL Query URL
ID djgohjhdlcjbemnlhdpbphkmhjoenfdj
官方URL https://chromewebstore.google.com/detail/query-url/djgohjhdlcjbemnlhdpbphkmhjoenfdj
简介 Update url and links with custom query on the fly.
文件大小 19.98 KB
安装次数 35
当前版本 1.0.0.3
更新时间 2021-05-11
上架时间 2020-08-12
评分 5.00/5 共2次评分
开发者 crohrefdev
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/AlHota/query-url
帮助页面URL https://github.com/AlHota/query-url
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Query URL",
    "description": "Update url and links with custom query on the fly.",
    "version": "1.0.0.3",
    "content_security_policy": "default-src 'self'",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": ".\/icons\/icon19.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": ".\/icons\/icon16.png",
        "19": ".\/icons\/icon19.png",
        "48": ".\/icons\/icon48.png",
        "128": ".\/icons\/icon128.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "*:\/\/*\/*"
            ],
            "js": [
                ".\/js\/main.js"
            ]
        }
    ]
}