Open with VLC
Open websites with VLC. You must install the vlc:// protocol handler as well. You should use this together with playlist parsers.
Qu'est-ce que Open with VLC ?
Open with VLC est une extension Chrome développée par Stefan, et sa fonction principale est "Open websites with VLC. You must install the vlc:// protocol handler as well. You should use this together with playlist parsers.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Open with VLC
Téléchargez les fichiers d'extension Open with VLC 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
Open websites with VLC. You must install the vlc:// protocol handler as well: https://github.com/stefansundin/vlc-protocol You should use this together with VLC playlist parsers, e.g: https://addons.videolan.org/p/1167220/ Please do not use it if you don't understand the above. You can right-click on links, iframes, and audio/video elements, and use the "Open with VLC" menu item.
Informations de Base sur l'Extension
Nom | Open with VLC |
ID | jcccmhdgkfinhddlhpahoeofmdlljglh |
URL Officiel | https://chromewebstore.google.com/detail/open-with-vlc/jcccmhdgkfinhddlhpahoeofmdlljglh |
Description | Open websites with VLC. You must install the vlc:// protocol handler as well. You should use this together with playlist parsers. |
Taille du Fichier | 8.19 KB |
Nombre d'Installations | 15,343 |
Version Actuelle | 1.4.1 |
Dernière Mise à Jour | 2020-10-01 |
Date de Publication | 2018-05-25 |
Évaluation | 4.60/5 Total 5 Évaluations |
Développeur | Stefan |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/stefansundin/open-with-vlc |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Open with VLC", "version": "1.4.1", "description": "Open websites with VLC. You must install the vlc:\/\/ protocol handler as well. You should use this together with playlist parsers.", "homepage_url": "https:\/\/github.com\/stefansundin\/open-with-vlc", "author": "Stefan Sundin", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "background": { "scripts": [ "background.js" ] }, "options_ui": { "page": "options.html", "chrome_style": true }, "browser_action": { "default_icon": { "16": "icon.png", "19": "icon.png", "38": "icon.png" }, "default_title": "Open page with VLC", "default_popup": "popup.html" }, "commands": { "open-vlc": { "suggested_key": { "default": "Alt+Shift+V" }, "description": "Open page with VLC" } }, "permissions": [ "activeTab", "tabs", "contextMenus", "storage" ] } |