URL Append param
Append param to current url
URL Append param란 무엇입니까?
URL Append param은(는) zzuwzj에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Append param to current url"입니다.
확장 프로그램 스크린샷
URL Append param 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | |
ID | ljiadknbolhlcpaphkjndlkompeemogd |
공식 URL | https://chrome.google.com/webstore/detail/url-append-param/ljiadknbolhlcpaphkjndlkompeemogd |
설명 | Append param to current url |
파일 크기 | 106 KB |
설치 횟수 | 25 |
현재 버전 | 1.0 |
최근 업데이트 | 2021-02-08 |
출시 날짜 | 2021-02-08 |
평점 | 1.50/5 총 2 개의 평점 |
개발자 | zzuwzj |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://zzuwzj.github.io/chrome-ext-url-add-param/ |
지원되는 언어 | 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" } } |