MoST Subtitles

Unofficial chrome extension for showing more subtitles at viki.com. The code is largely inspired by chrome-subtitles and subber,…

MoST Subtitlesคืออะไร?

MoST Subtitles เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Joel Sjögren และคุณลักษณะหลักของมันคือ "Unofficial chrome extension for showing more subtitles at viki.com. The code is largely inspired by chrome-subtitles and subber,…"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MoST Subtitles

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

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

                        Unofficial chrome extension for showing more subtitles at viki.com.

The code is largely inspired by chrome-subtitles and subber, but more minimal and targeted toward use at viki.com. It is commented and open-source, too. More most-like.

In early versions, only Korean was supported, but it is now possible to view as many languages as you want! In the options page, simply add more blocks, for example `.most-de { bottom: -100px; height: 100px; }` for German subtitles just below the player.

Visit https://github.com/JoelSjogren/most to fork, contribute, report bugs and request features!                    

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

ชื่อ MoST Subtitles MoST Subtitles
ID kjmhinhfpooeamgbjkcmjfdedlahnkhk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/most-subtitles/kjmhinhfpooeamgbjkcmjfdedlahnkhk
คำอธิบาย Unofficial chrome extension for showing more subtitles at viki.com. The code is largely inspired by chrome-subtitles and subber,…
ขนาดไฟล์ 301 KB
จำนวนการติดตั้ง 703
เวอร์ชันปัจจุบัน 0.8.6
อัปเดตครั้งล่าสุด 2024-02-05
วันที่เผยแพร่ 2018-01-27
คะแนน 3.20/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Joel Sjögren
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/JoelSjogren/most
URL หน้าช่วยเหลือ https://github.com/JoelSjogren/most/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MoST Subtitles",
    "version": "0.8.6",
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_title": "MoST Subtitles",
        "default_icon": "icon16.png"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2,
    "background": {
        "scripts": [
            "options_load.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.viki.com\/*",
                "http:\/\/www.viki.com\/*",
                "https:\/\/subber.viki.com\/*",
                "http:\/\/subber.viki.com\/*"
            ],
            "js": [
                "zepto.js",
                "overlay.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "options.html",
    "web_accessible_resources": [
        "options_default.css"
    ]
}