Tabs Playlist for Youtube

Simply manage your "playlist" by ordering your youtube tabs.

Was ist Tabs Playlist for Youtube?

Tabs Playlist for Youtube ist eine Chrome-Erweiterung, die von Matthis de Wit entwickelt wurde, und ihr Hauptmerkmal ist "Simply manage your "playlist" by ordering your youtube tabs.".

Erweiterungsscreenshots

screenshot

Tabs Playlist for Youtube-Erweiterungs-CRX-Datei herunterladen

Laden Sie Tabs Playlist for Youtube-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

                        Install:

Add te extension to Google Chrome and reload all your Youtube tabs.

Usage:

1. Open one Youtube video tab, the video starts playing automatically (as usual)

2. Other Youtube video tabs will be paused when loaded

3. When the 1st Youtube tab is almost done, it will crossfade with the next Youtube tab. When you play another Youtube tab, all other Youtube tabs will be paused.

Known bugs:

Occassionally a video is not automatically paused, working on this...                    

Grundlegende Informationen zur Erweiterung

Name Tabs Playlist for Youtube Tabs Playlist for Youtube
ID naplcmgdmolcljbkjajgdnlpfjcdclpi
Offizielle URL https://chrome.google.com/webstore/detail/tabs-playlist-for-youtube/naplcmgdmolcljbkjajgdnlpfjcdclpi
Beschreibung Simply manage your "playlist" by ordering your youtube tabs.
Dateigröße 72.74 KB
Installationsanzahl 311
Aktuelle Version 0.0.1.0
Letztes Update 2013-11-15
Veröffentlichungsdatum 2013-11-15
Bewertung 2.80/5 Insgesamt 15 Bewertungen
Entwickler Matthis de Wit
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tabs Playlist for Youtube",
    "short_name": "TabPlaylistr",
    "version": "0.0.1.0",
    "manifest_version": 2,
    "description": "Simply manage your \"playlist\" by ordering your youtube tabs.",
    "icons": {
        "16": "image16.png",
        "48": "image48.png",
        "128": "image128.png"
    },
    "permissions": [
        "tabs",
        "*:\/\/*.youtube.com\/watch?*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/watch?*"
            ],
            "js": [
                "jquery.js",
                "contentScript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "jquery.js",
        "youtube.js",
        "jquery.min.map"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/watch?*"
        ],
        "ids": [
            "*"
        ],
        "accepts_tls_channel_id": false
    },
    "page_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_title": "Tabs Playlist for Youtube - enabled"
    }
}