Simpli Youtube

Simplifies the Youtube viewing experience

Qu'est-ce que Simpli Youtube ?

Simpli Youtube est une extension Chrome développée par tldralgos, et sa fonction principale est "Simplifies the Youtube viewing experience".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Simpli Youtube

Téléchargez les fichiers d'extension Simpli Youtube au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Remove YouTube recomendations , comments, and more to simplify your Youtube experience.
With all the control given to the user remove as little or as much as you want.

 This extension enables you to reduce distractions and  take control of your time while browsing YouTube in the following ways:

- Hide comments
- Simplify the navigation drawer
- Hide recommended video types 
- Hide video information on videos
- Along with many more fully customizable features.

The options are also heavily customizable, so you can create exactly the experience you want.
So download and enjoy your simplified version of YouTube.                    

Informations de Base sur l'Extension

Nom Simpli Youtube Simpli Youtube
ID obfdcjijgiooldbhohidceamnppmkail
URL Officiel https://chromewebstore.google.com/detail/simpli-youtube/obfdcjijgiooldbhohidceamnppmkail
Description Simplifies the Youtube viewing experience
Taille du Fichier 16.79 KB
Nombre d'Installations 72
Version Actuelle 0.1.0
Dernière Mise à Jour 2021-01-07
Date de Publication 2021-01-07
Évaluation 5.00/5 Total 2 Évaluations
Développeur tldralgos
Email [email protected]
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simpli Youtube",
    "description": "Simplifies the Youtube viewing experience",
    "version": "0.1.0",
    "permissions": [
        "*:\/\/www.youtube.com\/*",
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_popup": "mainpop.html",
        "default_title": "Youtube Rabbit Hole",
        "default_icon": {
            "16": "image\/logo_16.png",
            "32": "image\/logo_32.png",
            "48": "image\/logo_48.png",
            "128": "image\/logo_128.png"
        }
    },
    "icons": {
        "16": "image\/logo_16.png",
        "32": "image\/logo_32.png",
        "48": "image\/logo_48.png",
        "128": "image\/logo_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "script.js"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}