Comment Overlay

Read comments and watch Youtube videos at the same time.

Τι είναι το Comment Overlay;

Το Comment Overlay είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unknown, και η κύρια λειτουργία του είναι "Read comments and watch Youtube videos at the same time.".

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

screenshot
screenshot

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

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

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

                        Comment Overlay allows you to read comments while watching YouTube videos. Comments are shown as an overlay on top the video. You can show/hide comments by clicking the extension button.

Version 1.2
- Dark Mode added.

Version 1.1:
- Theater mode is now supported.

Version 1.0:
- Original release.                    

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

Όνομα Comment Overlay Comment Overlay
ID mjkhjmibjakfenpldlgjogpiebkjliec
Επίσημο URL https://chromewebstore.google.com/detail/comment-overlay/mjkhjmibjakfenpldlgjogpiebkjliec
Περιγραφή Read comments and watch Youtube videos at the same time.
Μέγεθος Αρχείου 53.86 KB
Αριθμός Εγκαταστάσεων 251
Τρέχουσα Έκδοση 1.2
Τελευταία Ενημέρωση 2018-11-21
Ημερομηνία Δημοσίευσης 2018-11-20
Αξιολόγηση 3.83/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής Unknown
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Comment Overlay",
    "version": "1.2",
    "web_accessible_resources": [
        "mypage.htm"
    ],
    "description": "Read comments and watch Youtube videos at the same time.",
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "exclude_globs": [],
            "include_globs": [
                "https:\/\/www.youtube.com\/watch*?v=*",
                "https:\/\/www.youtube.com\/"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "content.js",
                "popup.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/watch*",
                "https:\/\/www.youtube.com\/"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Comment Overlay",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "manifest_version": 2
}