Search Params Remover

a browser extension helps you surf without utm_source and fbclid

Search Params Remover란 무엇입니까?

Search Params Remover은(는) kong0107에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "a browser extension helps you surf without utm_source and fbclid"입니다.

확장 프로그램 스크린샷

screenshot

Search Params Remover 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Sick of the trailing "?fbclid=xxx" and "?utm_source=xxx" in the address bar? Try this!
You can also add what you hate in the list within options page.

Open Source:
https://github.com/kong0107/search-params-remover                    

확장 프로그램 기본 정보

이름 Search Params Remover Search Params Remover
ID gfmcbkcihnobpalkdakmmecajahgnnol
공식 URL https://chromewebstore.google.com/detail/search-params-remover/gfmcbkcihnobpalkdakmmecajahgnnol
설명 a browser extension helps you surf without utm_source and fbclid
파일 크기 11.73 KB
설치 횟수 80
현재 버전 0.2.3
최근 업데이트 2022-08-25
출시 날짜 2018-12-05
평점 3.50/5 총 2 개의 평점
개발자 kong0107
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Search Params Remover",
    "version": "0.2.3",
    "description": "a browser extension helps you surf without utm_source and fbclid",
    "author": "kong0107",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ],
    "options_page": "options.html"
}