Painless CC

Make a good use of Youtube's Auto-generated Captions

Τι είναι το Painless CC;

Το Painless CC είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Painless CC, και η κύρια λειτουργία του είναι "Make a good use of Youtube's Auto-generated Captions".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Painless CC

Λήψη αρχείων επέκτασης Painless CC σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Easily Add Subtitles for Youtube!

Making videos is fun, Making subtitles is tedious!

You probably know that Youtube automatically generates subtitles (CC) for your videos, especially videos with English as the video language.

Automatic captioning is great, it has accurate subtitle timing. However, automatic captions are not perfect, the quality of the captions can vary, which is why we should always review the captions before using them.

This extension provides some simple features that allow you to edit subtitles. It also helps you convert subtitle files to different languages in a convenient way.

How to use:
1. Install the extension
2. Go to Youtube watch Page (https://www.youtube.com/watch?v=)
3. Make sure the CC is available and ready to use (Important!)
4. Refresh (F5) the webpage
5. The extension should start working
6. Edit Subtitles
7. Download it as SRT file
8. Go to Creator Studio
9. Add it to your video
10. Done!

* You may want to watch the instructional video we provide to understand the usage of this extension
* This plugin can only be used for videos that have been automatically translated by Youtube
* If you encounter any problems, please feel free to contact us via email or leave us a comment in our Youtube video: )                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Painless CC Painless CC
ID bkohkbgpnmhplcaheihaiomghmgfjlba
Επίσημο URL https://chromewebstore.google.com/detail/painless-cc/bkohkbgpnmhplcaheihaiomghmgfjlba
Περιγραφή Make a good use of Youtube's Auto-generated Captions
Μέγεθος Αρχείου 233 KB
Αριθμός Εγκαταστάσεων 136
Τρέχουσα Έκδοση 0.6
Τελευταία Ενημέρωση 2023-08-25
Ημερομηνία Δημοσίευσης 2022-03-31
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Painless CC
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "0.6",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.min.js"
    },
    "permissions": [
        "tabs",
        "storage",
        "scripting",
        "unlimitedStorage"
    ],
    "host_permissions": [
        "https:\/\/*.youtube.com\/*",
        "http:\/\/localhost:5000\/*"
    ],
    "icons": {
        "16": "image\/logo\/16x16.png",
        "24": "image\/logo\/24x24.png",
        "32": "image\/logo\/32x32.png",
        "48": "image\/logo\/48x48.png",
        "64": "image\/logo\/64x64.png",
        "128": "image\/logo\/128x128.png",
        "256": "image\/logo\/256x256.png",
        "512": "image\/logo\/512x512.png"
    },
    "action": {
        "default_icon": {
            "16": "image\/logo-gray\/16x16.png",
            "24": "image\/logo-gray\/24x24.png",
            "32": "image\/logo-gray\/32x32.png",
            "48": "image\/logo-gray\/48x48.png",
            "64": "image\/logo-gray\/64x64.png",
            "128": "image\/logo-gray\/128x128.png",
            "256": "image\/logo-gray\/256x256.png",
            "512": "image\/logo-gray\/512x512.png"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        {
            "resources": [
                "main.min.js"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        },
        {
            "resources": [
                "css\/*"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        },
        {
            "resources": [
                "image\/*"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "js": [
                "content.min.js"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        },
        {
            "js": [
                "external.min.js"
            ],
            "matches": [
                "http:\/\/localhost:5000\/*"
            ]
        }
    ]
}