YouTube Assistant

A tool that allows Youtube users to automatize some actions

Was ist YouTube Assistant?

YouTube Assistant ist eine Chrome-Erweiterung, die von zanomate entwickelt wurde, und ihr Hauptmerkmal ist "A tool that allows Youtube users to automatize some actions".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

YouTube Assistant-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Assistant-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

                        A simple youtube assistant that allows Youtube users to automatize some simple actions.

Functionality (1.1.0.5)
- Auto like on every video you see on Youtube
- (optional) Only on videos of channels you are subscribed to.
- Change YouTube homepage with the subsciptions section.

Last Release (1.1.0.6)
- NEW FUNCTION: Open youtube videos with a proxy website (proxfree.com)
- Bugfix

NOTE:
This application use the YouTube Data API, so it needs the user authentication to work.
For the same reason, lots functionalities may haven't instant 
visual feedback of the action they made, because they don't use the user interface to act.                    

Grundlegende Informationen zur Erweiterung

Name YouTube Assistant YouTube Assistant
ID ifloknebdnidmbkofconhlokhikakgop
Offizielle URL https://chrome.google.com/webstore/detail/youtube-assistant/ifloknebdnidmbkofconhlokhikakgop
Beschreibung A tool that allows Youtube users to automatize some actions
Dateigröße 47.68 KB
Installationsanzahl 143
Aktuelle Version 1.1.0.6
Letztes Update 2016-02-08
Veröffentlichungsdatum 2016-02-08
Bewertung 2.60/5 Insgesamt 5 Bewertungen
Entwickler zanomate
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.1.0.6",
    "name": "YouTube Assistant",
    "description": "A tool that allows Youtube users to automatize some actions",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgunFdO\/F2Q0F6FTw1jqjP4PGFqsBeVAfXAmrUD1MYpt7ohUgkZuOLJf2IRAbvmlwXxQfo0Ef1XQJNSqFElgv3irgeOFMYKdjUuUgQ1lZSpUGYfI7LLPKsDCb\/V6gCwXTAgLN2BPXhRvEkm6wDdqAERCMnKi3v8D+iSwGDnTqn+UPiGLIZ\/0LuHH1ZBvSi2B\/A26fEoo2kkD4KLdT0S0d5r5H4IkLm6RVISdp6uE4bAXrtqbe7Bu0yLkJSRqZ+FbFkaBS3CSaOok0SNk2838oHJppaGsu0KIaDS+R3YFgCZKR2BYlwfesVm+8+bQVGTZSEfUHC7xsIqLi8hBcj4baTwIDAQAB",
    "background": {
        "scripts": [
            "jquery-1.11.3.min.js",
            "background.js",
            "utils.js"
        ]
    },
    "options_page": "options.html",
    "oauth2": {
        "client_id": "75502546427-898pck04sba1q01b4l3k6t9efp7comfp.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/youtube"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "jquery-1.11.3.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'",
    "browser_action": {
        "default_title": "Click Me",
        "default_icon": "imgs\/128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "",
        "contextMenus",
        "notifications",
        "tabs",
        "storage"
    ],
    "icons": {
        "16": "imgs\/16.png",
        "128": "imgs\/128.png"
    }
}