ASMR filter for Youtube

Adds a button to quicly filter ASMR videos into or out of the Youtube website.

Τι είναι το ASMR filter for Youtube;

Το ASMR filter for Youtube είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον duri93, και η κύρια λειτουργία του είναι "Adds a button to quicly filter ASMR videos into or out of the Youtube website.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης ASMR filter for Youtube

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

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

                        Do you use Youtube for both regular and ASMR videos? Are you tired of having ASMR videos mixed with the regular ones? If so, this extension is for you!

"ASMR filter for Youtube" adds a new button near the Youtube logo. With it, you can quickly choose to hide either category of videos (ASMR or non-ASMR), instantly switching between regular, ASMR-free or ASMR-only versions of Youtube.

It acts on:
- homepage, explore, subscriptions pages
- channel pages
- correlated videos 
- the wall that appears at the end of each video
- playlists and subscriptions on the leftside menu
- playlist contents (in the "visualize playlist" page)

ASMR content is identified by looking for the "ASMR" string, either in the video title or channel name. To my experience, this correctly identifies all elements.                    

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

Όνομα ASMR filter for Youtube ASMR filter for Youtube
ID ickdeonllbpdejpefgocidjbkbplmikd
Επίσημο URL https://chromewebstore.google.com/detail/asmr-filter-for-youtube/ickdeonllbpdejpefgocidjbkbplmikd
Περιγραφή Adds a button to quicly filter ASMR videos into or out of the Youtube website.
Μέγεθος Αρχείου 23.5 KB
Αριθμός Εγκαταστάσεων 132
Τρέχουσα Έκδοση 1.00
Τελευταία Ενημέρωση 2021-11-07
Ημερομηνία Δημοσίευσης 2021-11-07
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής duri93
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ASMR filter for Youtube",
    "description": "Adds a button to quicly filter ASMR videos into or out of the Youtube website.",
    "author": "duri93",
    "version": "1.00",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "button.js",
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "icons": {
        "16": "\/icons\/icon-16.png",
        "24": "\/icons\/icon-24.png",
        "32": "\/icons\/icon-32.png",
        "48": "\/icons\/icon-48.png",
        "128": "\/icons\/icon-128.png"
    }
}