Mastodon Handles in Twitter

A helper to find people on Twitter that use Mastodon.

什麼是Mastodon Handles in Twitter?

Mastodon Handles in Twitter是由Lennard Scheibel開發的Chrome擴展程式,該擴展的主要功能是“A helper to find people on Twitter that use Mastodon.”。

擴展截圖

screenshot

下載Mastodon Handles in Twitter擴展crx文件

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

擴展使用說明

                        This extension adds a little mastodon icon next to users that mention their mastodon handle in their bio. Simply click the icon to go to their mastodon account.                    

擴展基本資訊

名稱 Mastodon Handles in Twitter Mastodon Handles in Twitter
ID ncgejfiheecflhpoifeembagnjgigioi
官方網址 https://chromewebstore.google.com/detail/mastodon-handles-in-twitt/ncgejfiheecflhpoifeembagnjgigioi
簡介 A helper to find people on Twitter that use Mastodon.
檔案大小 11.34 KB
安裝次數 130
目前版本 1.2.1
更新時間 2023-12-02
上架時間 2022-11-15
評分 4.00/5 共 3 次評分
開發者 Lennard Scheibel
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/lscheibel/mastodon-handles-in-twitter
說明頁面URL https://github.com/lscheibel/mastodon-handles-in-twitter/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mastodon Handles in Twitter",
    "description": "A helper to find people on Twitter that use Mastodon.",
    "version": "1.2.1",
    "manifest_version": 3,
    "permissions": [
        "https:\/\/*.twitter.com\/*",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/*.twitter.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "action": {
        "default_icon": "icon.png"
    }
}