Kill fbclid
Extension is removing ?fbclid= parameter from URL
Kill fbclid란 무엇입니까?
Kill fbclid은(는) Jakub Bouček에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension is removing ?fbclid= parameter from URL"입니다.
확장 프로그램 스크린샷
Kill fbclid 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Remove annoying ?fbclid= parameter from URL when you open any website from Facebook. Created with a high focus to performance, no unnecessary power waste. Strongly inspired by Michal Špaček's post: https://www.michalspacek.com/using-javascript-to-modify-urls-and-hide-fbclid Note: 2019-02-23 Changed icon of extension based on urgent complaint (see: https://github.com/jakubboucek/kill-fbclid/issues/4)
확장 프로그램 기본 정보
이름 | Kill fbclid |
ID | jlmdkcaiejonohbmkgickmkgbpceokmn |
공식 URL | https://chromewebstore.google.com/detail/kill-fbclid/jlmdkcaiejonohbmkgickmkgbpceokmn |
설명 | Extension is removing ?fbclid= parameter from URL |
파일 크기 | 11.39 KB |
설치 횟수 | 1,802 |
현재 버전 | 1.0.4 |
최근 업데이트 | 2020-11-10 |
출시 날짜 | 2019-07-09 |
평점 | 2.74/5 총 27 개의 평점 |
개발자 | Jakub Bouček |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://github.com/jakubboucek/kill-fbclid/issues |
지원되는 언어 | en,cs |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_application_title__", "description": "__MSG_application_description__", "version": "1.0.4", "default_locale": "en", "author": "Jakub Bou\u010dek", "homepage_url": "https:\/\/github.com\/jakubboucek\/kill-fbclid", "icons": { "16": "fbclid_16.png", "48": "fbclid_48.png", "128": "fbclid_128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "exclude_matches": [ "https:\/\/www.facebook.com\/*" ], "js": [ "fbclid.js" ], "run_at": "document_idle" } ] } |