Movie Subtitles

Add your own subtitles almost anywhere you want such as Disney, Netflix, YouTube and many more!

Movie Subtitlesคืออะไร?

Movie Subtitles เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gignu และคุณลักษณะหลักของมันคือ "Add your own subtitles almost anywhere you want such as Disney, Netflix, YouTube and many more!"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Add your own subtitles on almost any video/movie streaming platform you can think of, such as Amazon Prime, Disney Plus, Netflix (with some restrictions), Youtube, Twitch and many more!

Unfortunately, Movie Subtitles does not have a subtitle search. You have to download the subtitles online before you can use them in the extension. There are many websites that offer free subtitles. Two of the most popular ones are opensubtitles.org and yts-subs.com. Once you’ve got the subtitles you're good to go!

Movie Subtitles was originally developed to facilitate language learning and comes with many useful features for that purpose, such as the ability to jump between dialogues, skip silence and many more!

Features:
- Skip silence (scenes between dialogues)
- Skip music (if supported by the subtitle file)
- Synchronize subtitles
- Adjust subtitle style
- Select/Copy subtitle text (in edit mode)
- Upload subtitles in 40+ languages
- Supported formats (.txt, .srt, .sub)
- Shortcuts (not on Netflix)

Shortcuts:
- Previous sentence
- Next sentence
- Rewind (2.5 or 5s)
- Fast-forward (2.5 or 5s)
- Speed (slower)
- Speed (faster)
- Subtitles on/off
- Sync subtitles (1s earlier)
- Sync subtitles (1s later)

Movie Subtitles is an open-source project. If you have any ideas for improvement, found a bug, or want to contribute in some other way, you're welcome to do so!
https://github.com/gignupg/Movie-Subtitles

If you want to use Movie Subtitles to skip certain scenes of a movie, such as violent scenes, sexual scenes etc. check out the article on Medium I wrote about this topic: https://gignu.medium.com/how-to-skip-violent-scenes-and-adult-content-in-movies-3c7d89b813ad

Credits:
- Logo inspired by icons8
https://icons8.com/icons/set/movie-theater

- The extension was built using Ixieyang's React Boilerplate
https://github.com/lxieyang/chrome-extension-boilerplate-react

- Screenshots from Big Buck Bunny
https://www.youtube.com/watch?v=aqz-KE-bpKQ

License:
This project is licensed under the MIT License                    

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

ชื่อ Movie Subtitles Movie Subtitles
ID ifimcneililngppkpddcliecbpcgdjag
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/movie-subtitles/ifimcneililngppkpddcliecbpcgdjag
คำอธิบาย Add your own subtitles almost anywhere you want such as Disney, Netflix, YouTube and many more!
ขนาดไฟล์ 217 KB
จำนวนการติดตั้ง 4,624
เวอร์ชันปัจจุบัน 1.8.1
อัปเดตครั้งล่าสุด 2022-11-03
วันที่เผยแพร่ 2021-05-08
คะแนน 4.22/5 รวมทั้งหมด 23 คะแนน
ผู้พัฒนา gignu
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/gignupg/Movie-Subtitles
URL หน้าช่วยเหลือ https://github.com/gignupg/Movie-Subtitles/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Add your own subtitles almost anywhere you want such as Disney, Netflix, YouTube and many more!",
    "version": "1.8.1",
    "name": "Movie Subtitles",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "movie-subtitles-38.png"
    },
    "icons": {
        "16": "movie-subtitles-16.png",
        "48": "movie-subtitles-48.png",
        "128": "movie-subtitles-128.png"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}