Direct Link playlist

A leightweight playlist handler for direct link media

Qu'est-ce que Direct Link playlist ?

Direct Link playlist est une extension Chrome développée par captaingabi, et sa fonction principale est "A leightweight playlist handler for direct link media".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Direct Link playlist

Téléchargez les fichiers d'extension Direct Link playlist au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        A simple playlist handler for direct links with mp3 mp4 webm files.
Features:
 - add media on all tabs on active window  to playlist that has mp3, mp4 or webm extension.
 - video control buttons
 - volume control
 - randomization ensures all videos are played before you see the same video
 - move videos on the list with drag and drop
 - small ! icon when no tab is controlled, in this case a new tab will be opened

Github:
https://github.com/captaingabi/Chrome-YT-playlist                    

Informations de Base sur l'Extension

Nom Direct Link playlist Direct Link playlist
ID pijgpdncncnkjhpkgfladhcglhdajiim
URL Officiel https://chromewebstore.google.com/detail/direct-link-playlist/pijgpdncncnkjhpkgfladhcglhdajiim
Description A leightweight playlist handler for direct link media
Taille du Fichier 42.05 KB
Nombre d'Installations 25
Version Actuelle 1.0.0
Dernière Mise à Jour 2020-07-21
Date de Publication 2020-07-19
Développeur captaingabi
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Direct Link playlist",
    "version": "1.0.0",
    "description": "A leightweight playlist handler for direct link media",
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "unlimitedStorage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "PNG\/icon16.png",
            "32": "PNG\/icon32.png",
            "48": "PNG\/icon48.png",
            "128": "PNG\/icon128.png"
        }
    },
    "icons": {
        "16": "PNG\/icon16.png",
        "32": "PNG\/icon32.png",
        "48": "PNG\/icon48.png",
        "128": "PNG\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*.mp3",
                "*:\/\/*\/*.mp4",
                "*:\/\/*\/*.webm"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "manifest_version": 2,
    "web_accessible_resources": [
        "SVG\/player.svg"
    ]
}