Online Subtitles

Watch your favorite movies and shows online with subtitles.

Qu'est-ce que Online Subtitles ?

Online Subtitles est une extension Chrome développée par Ivan Oliinychenko, et sa fonction principale est "Watch your favorite movies and shows online with subtitles.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Online Subtitles

Téléchargez les fichiers d'extension Online Subtitles au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Watch your favorite movies and shows online with subtitles. Automatically finds video on web pages and adds functionality to upload subtitles (.srt, charset utf-8). Includes many options, such as subtitle color, position and time adjustment. Works only with html5 video.
Graphic design by Tetyana Starchenko.

Github: https://github.com/ioliynichenko/Online-Subtitles

ver 0.1.7:
 - select a subtitle encoding
 - shortcut (g, h) for decrease and increase the time of the subtitles (ty Leo Caseiro)
 - small css and js fixes

ver 0.1.8:
 - updated to manifest v3
 - added support dragging subtitels across the screen                    

Informations de Base sur l'Extension

Nom Online Subtitles Online Subtitles
ID ggdggkhbmmgnogbcciencemciapnpeij
URL Officiel https://chromewebstore.google.com/detail/online-subtitles/ggdggkhbmmgnogbcciencemciapnpeij
Description Watch your favorite movies and shows online with subtitles.
Taille du Fichier 44.72 KB
Nombre d'Installations 8,078
Version Actuelle 0.1.8
Dernière Mise à Jour 2023-04-05
Date de Publication 2016-09-10
Évaluation 3.13/5 Total 30 Évaluations
Développeur Ivan Oliinychenko
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/ioliynichenko/Online-Subtitles
URL de la Page d'Aide https://github.com/ioliynichenko/Online-Subtitles
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Online Subtitles",
    "short_name": "OnlineSub",
    "description": "Watch your favorite movies and shows online with subtitles.",
    "version": "0.1.8",
    "author": "Ivan Oliinychenko",
    "action": {
        "default_icon": {
            "16": "icon.png",
            "24": "icon.png",
            "32": "icon.png"
        },
        "default_popup": "onlineSub.html"
    },
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png",
        "128": "icon_128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/settings.svg",
                "images\/upload.svg",
                "icon.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "onlineSubBackground.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "onlineSubcontent.js"
            ],
            "css": [
                "onlineSub.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "background",
        "scripting"
    ],
    "host_permissions": [
        ""
    ]
}