Mastodon Handles in Twitter

A helper to find people on Twitter that use Mastodon.

Mastodon Handles in Twitterคืออะไร?

Mastodon Handles in Twitter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Lennard Scheibel และคุณลักษณะหลักของมันคือ "A helper to find people on Twitter that use Mastodon."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mastodon Handles in Twitter

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
    }
}