Watched It!

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

Was ist Watched It!?

Watched It! ist eine Chrome-Erweiterung, die von webagent entwickelt wurde, und ihr Hauptmerkmal ist "YouTube Extension to keep track of the videos you already watched.".

Erweiterungsscreenshots

screenshot

Watched It!-Erweiterungs-CRX-Datei herunterladen

Laden Sie Watched It!-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Watched It! Watched It!
ID jfikpanmifikipolnppakfgmjmmldbio
Offizielle URL https://chromewebstore.google.com/detail/watched-it/jfikpanmifikipolnppakfgmjmmldbio
Beschreibung YouTube Extension to keep track of the videos you already watched.
Dateigröße 38.06 KB
Installationsanzahl 76
Aktuelle Version 1.2
Letztes Update 2012-07-29
Veröffentlichungsdatum 2012-07-29
Bewertung 3.00/5 Insgesamt 3 Bewertungen
Entwickler webagent
Zahlungsart free
Unterstützte Sprachen 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"
    }
}