Remove YouTube Annotations

This extension will remove all of the annoying annotations from YouTube videos.

Τι είναι το Remove YouTube Annotations;

Το Remove YouTube Annotations είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον michaeljamore, και η κύρια λειτουργία του είναι "This extension will remove all of the annoying annotations from YouTube videos.".

Λήψη αρχείου CRX της επέκτασης Remove YouTube Annotations

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

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

                        Annotations are those annoying popups that you see on top of YouTube videos.  They are distracting and it's inconvenient to close them as they popup while you're watching a video.  This extension automatically removes them for you, creating a distraction free viewing experience.                    

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

Όνομα Remove YouTube Annotations Remove YouTube Annotations
ID fhokegfbegdagjeldmgapodjkbdipifp
Επίσημο URL https://chrome.google.com/webstore/detail/remove-youtube-annotation/fhokegfbegdagjeldmgapodjkbdipifp
Περιγραφή This extension will remove all of the annoying annotations from YouTube videos.
Μέγεθος Αρχείου 3.73 KB
Αριθμός Εγκαταστάσεων 33
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2015-11-08
Ημερομηνία Δημοσίευσης 2015-11-08
Αξιολόγηση 3.67/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής michaeljamore
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://mjamore.com
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remove YouTube Annotations",
    "description": "This extension will remove all of the annoying annotations from YouTube videos.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "close.png",
        "default_title": "Remove YouTube Annotations"
    },
    "permissions": [
        "activeTab",
        "https:\/\/www.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "script.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ]
}