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文件

下載FXTwitter copy擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}