Parameters Editor

Shows parameters used in the URL and allows to update, export and import them

Parameters Editor क्या है?

Parameters Editor Ivan Gualandri द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shows parameters used in the URL and allows to update, export and import them"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Parameters Editor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension, let you to manage the url parameters in your address bar, you can show/edit/add/delete them with just one click, you can also export them in csv and json format, or import them parameter list in CSV format.  

This is how it works: 
A small icon appears in each tab address bar, if you click on it you can see the list of all parameters for that url, that you can modify, export or import. 

If the url has no parameter you can press "add new" and add as many parameters as you want and click update to reload the page with new parameters

Everything is just two click away... 

If you are importing parameters from csv, be aware that if the first row contains parameter_name in the first column that line will be ignored, but if the above string appear in a different row, it will be treated as a normal parameter.

If you experience any bug or you want to suggest any new feature to be implemented in chrome parameters, you can click "report bug", and then enter your bug, or your suggestion (you can also add a label to classify it as a task or bug). 

Te Source code of the extension is available here:
 https://github.com/dreamos82/chrome_parameters                    

एक्सटेंशन की मूल जानकारी

नाम Parameters Editor Parameters Editor
ID jcfdalmioobeifbpcgjghhaifimaeaca
आधिकारिक URL https://chromewebstore.google.com/detail/parameters-editor/jcfdalmioobeifbpcgjghhaifimaeaca
विवरण Shows parameters used in the URL and allows to update, export and import them
फ़ाइल का आकार 61.5 KB
स्थापना संख्या 1,309
वर्तमान संस्करण 1.7
अंतिम अपडेट 2021-06-17
प्रकाशन तिथि 2020-05-28
रेटिंग 4.67/5 कुल 3 रेटिंग्स
डेवलपर Ivan Gualandri
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/dreamos82/chrome_parameters/
सहायता पृष्ठ URL https://github.com/dreamos82/chrome_parameters/issues/new
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Parameters Editor",
    "version": "1.7",
    "description": "Shows parameters used in the URL and allows to update, export and import them ",
    "permissions": [
        "activeTab",
        "tabs",
        "",
        "storage"
    ],
    "background": {
        "scripts": [
            "src\/background.js",
            "src\/common.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_title": "Show\/Edit parameter for this URL",
        "default_icon": "images\/icon.png",
        "default_popup": "src\/popup.html"
    },
    "options_ui": {
        "page": "src\/options.html",
        "browser_style": true,
        "chrome_style": true
    },
    "icons": {
        "128": "images\/icon128.png"
    }
}