Parameters Editor

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

Parameters Editor란 무엇입니까?

Parameters Editor은(는) Ivan Gualandri에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows parameters used in the URL and allows to update, export and import them"입니다.

확장 프로그램 스크린샷

screenshot

Parameters Editor 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}