YouTube Watch without Playlist

This extension allows videos from playlists to be watched without the playlist view.

Vad är YouTube Watch without Playlist?

YouTube Watch without Playlist är en Chrome-tillägg utvecklad av Joel Henke, och dess huvudfunktion är "This extension allows videos from playlists to be watched without the playlist view.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner YouTube Watch without Playlist-förlängningens CRX-fil

Ladda ner YouTube Watch without Playlist-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                                            

Grundläggande Information om Tillägg

Namn YouTube Watch without Playlist YouTube Watch without Playlist
ID hemfmfgfgaohilndfehheengjlgmkhlo
Officiell webbadress https://chrome.google.com/webstore/detail/youtube-watch-without-pla/hemfmfgfgaohilndfehheengjlgmkhlo
Beskrivning This extension allows videos from playlists to be watched without the playlist view.
Filstorlek 438 KB
Antal Installationer 153
Aktuell Version 1.2
Senast Uppdaterad 2020-02-16
Publiceringsdatum 2020-02-16
Betyg 4.63/5 Totalt 8 Betyg
Utvecklare Joel Henke
E-post [email protected]
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Watch without Playlist",
    "version": "1.2",
    "description": "This extension allows videos from playlists to be watched without the playlist view.",
    "author": "Joel Henke",
    "permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "addbuttons.js",
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "addbuttons.js",
        "xhrmonitor.js"
    ],
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    }
}