SubAny Web

Add your own SRT, VTT, SAMI, or TTML subtitles to your preferred service streaming web platform.

SubAny Webคืออะไร?

SubAny Web เป็นส่วนขยายของ Chrome ที่พัฒนาโดย prosset และคุณลักษณะหลักของมันคือ "Add your own SRT, VTT, SAMI, or TTML subtitles to your preferred service streaming web platform."

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

screenshot
screenshot

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

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

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

                        The streaming world has never been so exciting. Many companies are investing a large number of resources to deliver video on the web. This is changing how we get entertained.

However, depending on the country you live, you may face some limitations of right about specific video content that can be delivered. This also concerns subtitles.

To answer these problems, you can now provide your subtitles.
Thus, for example, if you stay in a country where the streaming provider can't have access to the captions you wish, you can use that extension. 

This is also useful for people that don't like subtitles that the services are providing and so providing your captions.                    

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

ชื่อ SubAny Web SubAny Web
ID japfodgakhloekokcjbapdodojbhnnkc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/subany-web/japfodgakhloekokcjbapdodojbhnnkc
คำอธิบาย Add your own SRT, VTT, SAMI, or TTML subtitles to your preferred service streaming web platform.
ขนาดไฟล์ 12.79 MB
จำนวนการติดตั้ง 367
เวอร์ชันปัจจุบัน 0.1.1
อัปเดตครั้งล่าสุด 2020-04-07
วันที่เผยแพร่ 2020-04-06
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา prosset
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/PaulRosset/subtitles-anywhere-web
URL หน้าช่วยเหลือ https://github.com/PaulRosset/subtitles-anywhere-web/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SubAny Web",
    "version": "0.1.1",
    "description": "Add your own SRT, VTT, SAMI, or TTML subtitles to your preferred service streaming web platform.",
    "homepage_url": "https:\/\/github.com\/PaulRosset\/subtitles-anywhere-web",
    "manifest_version": 2,
    "minimum_chrome_version": "68",
    "web_accessible_resources": [
        "medias\/play.svg",
        "medias\/stop.svg"
    ],
    "browser_action": {
        "default_icon": "medias\/icon.png",
        "default_title": "SubAny"
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "128": "medias\/icon.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}