SeenIt

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

Τι είναι το SeenIt;

Το SeenIt είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Imran Thobani, και η κύρια λειτουργία του είναι "SeenIt labels or hides the YouTube videos you've already watched. Now you can discover new content more easily.".

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

screenshot
screenshot

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

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

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

                        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.                    

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

Όνομα SeenIt SeenIt
ID micbdilkepmleglkjkcgeppifphhpnfl
Επίσημο URL https://chromewebstore.google.com/detail/seenit/micbdilkepmleglkjkcgeppifphhpnfl
Περιγραφή SeenIt labels or hides the YouTube videos you've already watched. Now you can discover new content more easily.
Μέγεθος Αρχείου 28.08 KB
Αριθμός Εγκαταστάσεων 190
Τρέχουσα Έκδοση 1.3
Τελευταία Ενημέρωση 2013-11-17
Ημερομηνία Δημοσίευσης 2013-11-17
Αξιολόγηση 2.71/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής Imran Thobani
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
    }
}