Copy UTM-Free
Copy any URL without UTM parameters
Copy UTM-Free란 무엇입니까?
Copy UTM-Free은(는) AA에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copy any URL without UTM parameters"입니다.
확장 프로그램 스크린샷
Copy UTM-Free 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This Chrome extension allows you to easily copy the URL of the currently active browser tab without any UTM parameters. UTM parameters are typically used for tracking and analytics purposes, and they can make URLs longer and harder to read. By removing these parameters, the extension helps you copy and share cleaner, more readable URLs. A brief summary of the benefits and features: 1. Simplifies URLs: The extension removes UTM parameters, resulting in a shorter and more user-friendly URL. 2. Enhances privacy: By removing tracking parameters, you can share URLs without unintentionally disclosing information about your browsing behavior or the source of the shared link. 3. Easy to use: With just one click, you can copy the cleaned URL to their clipboard, making it convenient to share or paste elsewhere. 4. Unobtrusive: The extension operates in the background, and you only need to interact with it when they you to copy a URL. The design is minimalistic, and it doesn't interfere with the browsing experience. In summary, this Chrome extension is a useful tool for anyone who wants to share cleaner, more readable URLs without UTM parameters. It enhances privacy and simplifies the user experience, making it a valuable addition to your set of Chrome extensions.
확장 프로그램 기본 정보
이름 | Copy UTM-Free |
ID | akgkaecmnbhmpeeimdnififiblpdogom |
공식 URL | https://chromewebstore.google.com/detail/copy-utm-free/akgkaecmnbhmpeeimdnififiblpdogom |
설명 | Copy any URL without UTM parameters |
파일 크기 | 6.2 KB |
설치 횟수 | 34 |
현재 버전 | 1.0 |
최근 업데이트 | 2023-03-28 |
출시 날짜 | 2023-03-28 |
개발자 | AA |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Copy UTM-Free", "version": "1.0", "description": "Copy any URL without UTM parameters", "action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "UTM-Free URLs" }, "permissions": [ "activeTab", "contextMenus" ], "host_permissions": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "background": { "service_worker": "background.js" }, "icons": { "48": "icon.png" } } |