YouTubeVideoHater

Skips videos You hate

Τι είναι το YouTubeVideoHater;

Το YouTubeVideoHater είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jCrusader, και η κύρια λειτουργία του είναι "Skips videos You hate".

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

screenshot

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

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

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

                        Lets You define videos You hate (by keywords) and then they will be automatically skipped.

# Intro
Lets imagine that You hate Justin Bieber. You hate is so much, that You cannot stand a video on YouTube that contains his voice.
Up to now, You would need to go to YouTube tab in chrome and change video, however this is no longer the case! This app will do it for You!

# How it works
- User is defining list of keywords.
- Extension is checking if title of YouTube video that is played right now contains any of keywords. If yes, then video is switched to next (as You would press next button in YouTube player).
- List of hated keywords is automatically synced between Your devices (if You are logged in Chrome).

# Defining keywords
1. Click on the "dislike" button in Extensions toolbar:
2. Type a keyword and click "Hate it!":
3. Keyword will be added to list at the bottom of the widget.
4. U can remove keywords You no longer want to hate. :)

# Extension source
This extension is OpenSource - You can download and play with it's code here:
https://github.com/bogumilbierc/YouTubeVideoHater                    

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

Όνομα YouTubeVideoHater YouTubeVideoHater
ID oobemdheodkfbolcepnncicdknanjfji
Επίσημο URL https://chrome.google.com/webstore/detail/youtubevideohater/oobemdheodkfbolcepnncicdknanjfji
Περιγραφή Skips videos You hate
Μέγεθος Αρχείου 37.33 KB
Αριθμός Εγκαταστάσεων 86
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2017-03-09
Ημερομηνία Δημοσίευσης 2017-03-09
Αξιολόγηση 4.80/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής jCrusader
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTubeVideoHater",
    "description": "Skips videos You hate",
    "version": "1.0",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistence": false
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Hate this Video with me!"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "external\/js\/jquery-3.1.1.min.js",
                "js\/skip_it.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "tabs",
        "",
        "webNavigation",
        "storage"
    ]
}