Super Magic Link

Super Magic Link is the easiest way to watch TV, Movies, and music with your favourite Twitch streamers

Super Magic Linkคืออะไร?

Super Magic Link เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://supermagiclink.com และคุณลักษณะหลักของมันคือ "Super Magic Link is the easiest way to watch TV, Movies, and music with your favourite Twitch streamers"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Super Magic Link

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

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

                        If a Twitch streamer is watching TV or Movies on Super Magic Link, you can watch with them. Content stays in perfect sync with their Twitch stream so you can share the experience together.

Everything from Netflix to Spotify can be automatically synced, so you can watch content you love alongside streamers and chat.

If you miss a synced stream, you'll be able to watch it later easily. We automatically created saved syncs - so as long as a streamer has VODs on Twitch, so you can rewatch shows and series together with them anytime.

Start creating and watching content with friends on Super Magic Link, now.                    

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

ชื่อ Super Magic Link Super Magic Link
ID hhjoiacmoonaggclpjcenbmdeckfimjl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/super-magic-link/hhjoiacmoonaggclpjcenbmdeckfimjl
คำอธิบาย Super Magic Link is the easiest way to watch TV, Movies, and music with your favourite Twitch streamers
ขนาดไฟล์ 27.64 KB
จำนวนการติดตั้ง 60
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2021-04-01
วันที่เผยแพร่ 2021-03-20
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://supermagiclink.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://supermagiclink.com/
URL หน้าช่วยเหลือ https://community.supermagiclink.com/
URL หน้านโยบายความเป็นส่วนตัว https://community.supermagiclink.com/privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Super Magic Link",
    "description": "Super Magic Link is the easiest way to watch TV, Movies, and music with your favourite Twitch streamers",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "version": "1.2",
    "manifest_version": 2,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/*"
            ],
            "js": [
                "content-script-netflix.js"
            ]
        },
        {
            "matches": [
                "https:\/\/supermagiclink.com\/*"
            ],
            "js": [
                "content-script-sml.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/supermagiclink.com\/*",
            "*:\/\/*.netflix.com\/*"
        ]
    },
    "permissions": [
        "tabs",
        "https:\/\/*.netflix.com\/*"
    ],
    "web_accessible_resources": [
        "*.js"
    ],
    "browser_action": []
}