Watched It!

YouTube Extension to keep track of the videos you already watched.

Τι είναι το Watched It!;

Το Watched It! είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον webagent, και η κύρια λειτουργία του είναι "YouTube Extension to keep track of the videos you already watched.".

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

screenshot

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

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

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

                        Notice: You need at least Version20+ to use this extension.

Current known Bugs:
- Only watched videos that are displayed when the site was loaded the first time get removed. If YouTube loads other videos using for example ajax they will be displayed without any changes.

V1.2. bug fix for the popup and some smaller issues with the sync. storage.

V1.1
The extension is now using sync. storage. Should help you if you are working on multiple systems. Also you can now repress the button to deselect a video. The video will then be removed from your history.

V1.0
alpha version - please do not expect anything to work. If you need features, send an email to: [email protected] and it will be implemented. Thanks!                    

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

Όνομα Watched It! Watched It!
ID jfikpanmifikipolnppakfgmjmmldbio
Επίσημο URL https://chromewebstore.google.com/detail/watched-it/jfikpanmifikipolnppakfgmjmmldbio
Περιγραφή YouTube Extension to keep track of the videos you already watched.
Μέγεθος Αρχείου 38.06 KB
Αριθμός Εγκαταστάσεων 76
Τρέχουσα Έκδοση 1.2
Τελευταία Ενημέρωση 2012-07-29
Ημερομηνία Δημοσίευσης 2012-07-29
Αξιολόγηση 3.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής webagent
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Watched It!",
    "version": "1.2",
    "manifest_version": 2,
    "description": "YouTube Extension to keep track of the videos you already watched.",
    "permissions": [
        "tabs",
        "http:\/\/www.youtube.com\/",
        "storage"
    ],
    "web_accessible_resources": [
        "img\/unwatchedActive1.png",
        "img\/unwatchedInactive1.png",
        "img\/watchedActive1.png",
        "img\/watchedInactive1.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "css": [
                "youtubeStyle.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "util.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_popup": "popup.html"
    }
}