URL Append param

Append param to current url

Wat is URL Append param?

URL Append param is een Chrome-extensie ontwikkeld door zzuwzj, en de belangrijkste functie is "Append param to current url".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie URL Append param

Download URL Append param-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Append specified url param to current page url and open a new tab with the new url, for example,  append "forceVersion=0.0.0" to current url and open a new tab with the new url param.                    

Basisinformatie over de Extensie

Naam URL Append param URL Append param
ID ljiadknbolhlcpaphkjndlkompeemogd
Officiële URL https://chrome.google.com/webstore/detail/url-append-param/ljiadknbolhlcpaphkjndlkompeemogd
Beschrijving Append param to current url
Bestandsgrootte 106 KB
Aantal Installaties 25
Huidige Versie 1.0
Laatst Bijgewerkt 2021-02-08
Publicatiedatum 2021-02-08
Beoordeling 1.50/5 Totaal 2 Beoordelingen
Ontwikkelaar zzuwzj
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://zzuwzj.github.io/chrome-ext-url-add-param/
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "URL Append param",
    "description": "Append param to current url",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "activeTab",
        "scripting",
        "contextMenus",
        "tabs"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/url_16.png",
            "32": "\/images\/url_32.png",
            "48": "\/images\/url_48.png",
            "128": "\/images\/url_128.png"
        }
    },
    "options_page": "options.html",
    "icons": {
        "16": "\/images\/url_16.png",
        "32": "\/images\/url_32.png",
        "48": "\/images\/url_48.png",
        "128": "\/images\/url_128.png"
    }
}