SeenIt

SeenIt labels or hides the YouTube videos you've already watched. Now you can discover new content more easily.

Qu'est-ce que SeenIt ?

SeenIt est une extension Chrome développée par Imran Thobani, et sa fonction principale est "SeenIt labels or hides the YouTube videos you've already watched. Now you can discover new content more easily.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension SeenIt

Téléchargez les fichiers d'extension SeenIt 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

                        Labels (or hides, if you adjust the options) the thumbnails of videos you've watched. Works for:
* Search results
* Recommendations
* Sidebar with similar videos to the video now playing

If you like this extension, please rate and/or leave a review here! All feedback is useful.                    

Informations de Base sur l'Extension

Nom SeenIt SeenIt
ID micbdilkepmleglkjkcgeppifphhpnfl
URL Officiel https://chromewebstore.google.com/detail/seenit/micbdilkepmleglkjkcgeppifphhpnfl
Description SeenIt labels or hides the YouTube videos you've already watched. Now you can discover new content more easily.
Taille du Fichier 28.08 KB
Nombre d'Installations 190
Version Actuelle 1.3
Dernière Mise à Jour 2013-11-17
Date de Publication 2013-11-17
Évaluation 2.71/5 Total 7 Évaluations
Développeur Imran Thobani
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SeenIt",
    "description": "SeenIt labels or hides the YouTube videos you've already watched. Now you can discover new content more easily.",
    "version": "1.3",
    "author": "Imran Thobani",
    "icons": {
        "128": "seenit.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'",
    "browser_action": {
        "default_icon": "seenit.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "oauth2": {
        "client_id": "1058256324296-ve67pga7n4anuc1d4c4s8uhlq1glkqhm.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/youtube.readonly"
        ]
    },
    "permissions": [
        "identity"
    ],
    "background": {
        "page": "background.html"
    }
}