Add Query String To URL

This easy and lightweight extension can be used to add a query string to the any url.

Add Query String To URL란 무엇입니까?

Add Query String To URL은(는) iamraghvendrapathak에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This easy and lightweight extension can be used to add a query string to the any url."입니다.

확장 프로그램 스크린샷

screenshot

Add Query String To URL 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Tired of adding query string to the url? This easy and lightweight extension helps you to add a query string to any url. All you need is to turn on the toggle.                    

확장 프로그램 기본 정보

이름 Add Query String To URL Add Query String To URL
ID plakklnddafbgeodimojmfgneiadigkp
공식 URL https://chromewebstore.google.com/detail/add-query-string-to-url/plakklnddafbgeodimojmfgneiadigkp
설명 This easy and lightweight extension can be used to add a query string to the any url.
파일 크기 7 KB
설치 횟수 36
현재 버전 0.0.1
최근 업데이트 2022-10-25
출시 날짜 2022-10-24
평점 5.00/5 총 2 개의 평점
개발자 iamraghvendrapathak
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Raghvendra Pathak",
    "name": "Add Query String To URL",
    "short_name": "AQSTU",
    "description": "This easy and lightweight extension can be used to add a query string to the any url.",
    "version": "0.0.1",
    "manifest_version": 3,
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Add Query String To URL"
    },
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "background.js"
            ]
        }
    ]
}