YouTube Comments+

Removes comments with a single plus ('+') from YouTube comment threads.

Τι είναι το YouTube Comments+;

Το YouTube Comments+ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Melvin Sowah, και η κύρια λειτουργία του είναι "Removes comments with a single plus ('+') from YouTube comment threads.".

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

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

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

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

                        NOTE: This is an early alpha! Feedback and suggestions are greatly appreciated :)

DISCLAIMER: Hank didn't write this, he came up with the idea and I simply wrote something to make the experiment a little easier

New in Alpha 1:
 - Complete Rewrite! This new version is now a lot clearer and a lot easier to work with, meaning I can fix bugs faster
 - New Logo (Thanks Hank!)
 - Open Source on GitHub https://github.com/MelvIsntNormal/YTCommentsPlus

This small extension removes comments from YouTube that contain a single plus in them.

The idea comes from the Vlogbrothers: Hank suggested that viewers start commenting with a single plus on comments that deserved more attention. Comments seem to have more weight in Google's comment algorithm than likes, so comments with loads of replies get pushed to the top.

Several users find this useful, but difficult to work with. They can no longer have coherent conversations on comments because it becomes a sea of pluses. This extension aims to solve that problem. Now we can have a clean comment system that brings out the better quality comments, rather than the ones that simply generate a lot of noise.

If you have any suggestions or bug reports, feel free to leave a review/suggestion here, or tweet me @melvisntnormal                    

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

Όνομα YouTube Comments+ YouTube Comments+
ID lhjhfienbklemmabjgkepbiihihnhacg
Επίσημο URL https://chromewebstore.google.com/detail/youtube-comments+/lhjhfienbklemmabjgkepbiihihnhacg
Περιγραφή Removes comments with a single plus ('+') from YouTube comment threads.
Μέγεθος Αρχείου 101 KB
Αριθμός Εγκαταστάσεων 270
Τρέχουσα Έκδοση Alpha 1 (Disabled)
Τελευταία Ενημέρωση 2017-09-30
Ημερομηνία Δημοσίευσης 2017-09-30
Αξιολόγηση 4.77/5 Συνολικά 35 Αξιολογήσεις
Προγραμματιστής Melvin Sowah
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Comments+",
    "version": "0.1.1",
    "version_name": "Alpha 1 (Disabled)",
    "description": "Removes comments with a single plus ('+') from YouTube comment threads.",
    "minimum_chrome_version": "26",
    "permissions": [
        "*:\/\/*.youtube.com\/*",
        "notifications"
    ],
    "icons": {
        "16": ".\/images\/icons\/icon_16.png",
        "32": ".\/images\/icons\/icon_32.png",
        "48": ".\/images\/icons\/icon_48.png",
        "128": ".\/images\/icons\/icon_128.png"
    },
    "browser_action": {
        "default_title": "YT Comments+",
        "default_popup": "layouts\/popup.html"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "scripts\/lib\/ramda.js",
                "scripts\/lib\/plite.js",
                "scripts\/lib\/kefir.js",
                "scripts\/init.js",
                "scripts\/utils.js",
                "scripts\/node_watcher.js",
                "scripts\/main.js"
            ]
        }
    ]
}