YouBlock

Since the recent update in YouTube the extension is a little buggy but it works with new messages... most of the time. It will not…

Τι είναι το YouBlock;

Το YouBlock είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον darby.rathbone, και η κύρια λειτουργία του είναι "Since the recent update in YouTube the extension is a little buggy but it works with new messages... most of the time. It will not…".

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

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

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

                        Since the recent update in YouTube the extension is a little buggy but it works with new messages... most of the time. It will not block old messages that are in the chat before loading. You cannot block the people who sent the messages before your youtube loaded. Feel free to assist in the programming but looking at the github link at the bottom of this.

This is a feature for YouTube streaming videos chat. When there are a bunch of spammers and reporting them for spam doesn't seem to be doing anything. All you have to do is install this refresh the streaming page and then "Report message" them once and they will no longer show up in your chat.

I added the persistence that I originally wanted. To block someone permanently just block them once. To remove them from the blocked list now you need to click options in extensions and remove them from the list by clicking the X next to their name.

I need to add some features still but you can see my progress or assist here https://github.com/darbicus/youBlock . You can also submit reports of issues there or request features.                    

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

Όνομα YouBlock YouBlock
ID ihhpifdmgophogphhddppiclngkbhnal
Επίσημο URL https://chromewebstore.google.com/detail/youblock/ihhpifdmgophogphhddppiclngkbhnal
Περιγραφή Since the recent update in YouTube the extension is a little buggy but it works with new messages... most of the time. It will not…
Μέγεθος Αρχείου 19.04 KB
Αριθμός Εγκαταστάσεων 4,084
Τρέχουσα Έκδοση 2.0
Τελευταία Ενημέρωση 2017-01-25
Ημερομηνία Δημοσίευσης 2017-01-25
Αξιολόγηση 4.61/5 Συνολικά 18 Αξιολογήσεις
Προγραμματιστής darby.rathbone
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouBlock",
    "version": "2.0",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "storage": {
        "managed_schema": "schema.json"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "ContentScript.js"
            ]
        }
    ]
}