Twitter Account Switcher

Twitter Account Switcher for Chrome

Twitter Account Switcherคืออะไร?

Twitter Account Switcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย fukayatsu และคุณลักษณะหลักของมันคือ "Twitter Account Switcher for Chrome"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter Account Switcher

ดาวน์โหลดไฟล์ส่วนขยาย Twitter Account Switcher ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Default keyboard shortcut to switch twitter account

mac: ⌘ + Shift + S
other: Ctrl + Shift + S


# Credits

Icons made by Freepik from www.flaticon.com
https://www.flaticon.com/authors/freepik                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Twitter Account Switcher Twitter Account Switcher
ID fljnkjcbdekmenbhmoeoebfcnpobjblk
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/twitter-account-switcher/fljnkjcbdekmenbhmoeoebfcnpobjblk
คำอธิบาย Twitter Account Switcher for Chrome
ขนาดไฟล์ 23.55 KB
จำนวนการติดตั้ง 81
เวอร์ชันปัจจุบัน 1.3.0
อัปเดตครั้งล่าสุด 2022-11-15
วันที่เผยแพร่ 2020-03-29
ผู้พัฒนา fukayatsu
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/fukayatsu/twitter-account-switcher-crx
URL หน้าช่วยเหลือ https://github.com/fukayatsu/twitter-account-switcher-crx/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitter Account Switcher",
    "description": "Twitter Account Switcher for Chrome",
    "version": "1.3.0",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "Command+Shift+S"
            }
        }
    }
}