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
官方網址 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"
            ]
        }
    ]
}