VxTwitter URL

Converts twitter.com URLs to VXTwitter URLS when copying them.

VxTwitter URL란 무엇입니까?

VxTwitter URL은(는) potatoswedish에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Converts twitter.com URLs to VXTwitter URLS when copying them."입니다.

확장 프로그램 스크린샷

screenshot

VxTwitter URL 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Usage:
* Share -> Copy Link on a tweet will automatically convert the link to vxtwitter (English only).

Extra features -
* Ctrl + C will convert the current clipboard's twitter/x url to vxtwitter.
* Ctrl + Q will do the same but add || to the beginning and end (for discord spoiler)                    

확장 프로그램 기본 정보

이름 VxTwitter URL VxTwitter URL
ID bdioigkngoclklbmmgegppmmekffpgdh
공식 URL https://chromewebstore.google.com/detail/vxtwitter-url/bdioigkngoclklbmmgegppmmekffpgdh
설명 Converts twitter.com URLs to VXTwitter URLS when copying them.
파일 크기 14.5 KB
설치 횟수 312
현재 버전 1.3
최근 업데이트 2024-01-12
출시 날짜 2023-12-11
평점 5.00/5 총 4 개의 평점
개발자 potatoswedish
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "VxTwitter URL",
    "version": "1.3",
    "description": "Converts twitter.com URLs to VXTwitter URLS when copying them.",
    "icons": {
        "96": "icon-96.png",
        "48": "icon-48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/i\/tweetdeck"
            ],
            "js": [
                "appTweetDeck.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.twitter.com\/*",
                "*:\/\/*.x.com\/*"
            ],
            "js": [
                "appTwitter.js"
            ]
        }
    ],
    "permissions": [
        "clipboardRead",
        "clipboardWrite"
    ]
}