FXTwitter copy

Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.

FXTwitter copy란 무엇입니까?

FXTwitter copy은(는) DJPiplup에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice."입니다.

확장 프로그램 스크린샷

screenshot

FXTwitter copy 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The twitter and x links you copy will be automatically converted to fxtwitter or whatever you decide to point them to. As of 2.0, you can also add embed fixers for any sites you want.                    

확장 프로그램 기본 정보

이름 FXTwitter copy FXTwitter copy
ID pdkppfndmdlnihpchfdjcglkangjfgea
공식 URL https://chromewebstore.google.com/detail/fxtwitter-copy/pdkppfndmdlnihpchfdjcglkangjfgea
설명 Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.
파일 크기 8.14 KB
설치 횟수 77
현재 버전 2.0
최근 업데이트 2023-11-27
출시 날짜 2023-10-20
개발자 DJPiplup
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "FXTwitter copy",
    "description": "Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.",
    "version": "2.0",
    "action": {
        "default_popup": "config.html",
        "default_icon": "icon.png"
    },
    "permissions": [
        "storage",
        "contextMenus",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "js": [
                "watcher.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}