VXTwitter URL Modifier
Modifies Twitter URLs to start with 'vx' and copies the modified URL.
VXTwitter URL Modifier란 무엇입니까?
VXTwitter URL Modifier은(는) NotZaidi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Modifies Twitter URLs to start with 'vx' and copies the modified URL."입니다.
확장 프로그램 스크린샷
VXTwitter URL Modifier 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Welcome to VXTwitter URL Modifier, a Chrome extension designed to make it easier to share posts to places like Discord so your friends can easily see your images/videos. Key Features: Smart Copy Functionality: Want to share the VXTwitter link? Just hit Ctrl+C! Our extension intelligently copies the modified VXTwitter URL to your clipboard, making sharing and saving links effortless. Highlight-to-Copy Flexibility: Only want to copy specific text? No problem! Our extension is designed to understand your needs. If you highlight text, Ctrl+C will copy just the text, not the URL. It's all about giving you control and flexibility. User-Friendly Design: We focus on simplicity and efficiency. There are no complicated settings or configurations. Just install the extension, and it works in the background, ready when you need it. Secure and Privacy-Friendly: Your privacy matters to us. The extension works locally on your browser without sending data externally, ensuring your browsing habits and data remain private.
확장 프로그램 기본 정보
이름 | VXTwitter URL Modifier |
ID | fjphdcobpcafboggpjdimkcbgcbghlfh |
공식 URL | https://chromewebstore.google.com/detail/vxtwitter-url-modifier/fjphdcobpcafboggpjdimkcbgcbghlfh |
설명 | Modifies Twitter URLs to start with 'vx' and copies the modified URL. |
파일 크기 | 31.37 KB |
설치 횟수 | 147 |
현재 버전 | 1.2 |
최근 업데이트 | 2024-01-31 |
출시 날짜 | 2023-12-28 |
개발자 | NotZaidi |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/ahzaidi/VXTwitter |
도움말 페이지 URL | https://github.com/ahzaidi/VXTwitter |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "VXTwitter URL Modifier", "version": "1.2", "description": "Modifies Twitter URLs to start with 'vx' and copies the modified URL.", "permissions": [], "host_permissions": [ "https:\/\/twitter.com\/*" ], "action": { "default_icon": { "16": "icons\/icon_16.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" } }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "content.js" ] } ], "icons": { "16": "icons\/icon_16.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" } } |