WebM Options (Premium)
Set default attributes for direct WebM links
Was ist WebM Options (Premium)?
WebM Options (Premium) ist eine Chrome-Erweiterung, die von Miller entwickelt wurde, und ihr Hauptmerkmal ist "Set default attributes for direct WebM links".
Erweiterungsscreenshots
WebM Options (Premium)-Erweiterungs-CRX-Datei herunterladen
Laden Sie WebM Options (Premium)-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
Direct links to WebM files have all the video attributes set to Chrome's default values, this extension gives you control over what those values are. This extension ONLY works with direct links to WebM files, it only works on pages where the URL ends with .webm To enable this extension to work with local files, check the 'Allow access to file URLs' checkbox underneath the extension in chrome > settings > extensions If you have any suggestions, comments or if you want to design a nice layout for the options page (or some logos or banners that don't look as terrible as the ones I've made) feel free to contact me.
Grundlegende Informationen zur Erweiterung
Name | WebM Options (Premium) |
ID | fhgjcfedjhkachipnckecjckmdllpgjh |
Offizielle URL | https://chromewebstore.google.com/detail/webm-options-premium/fhgjcfedjhkachipnckecjckmdllpgjh |
Beschreibung | Set default attributes for direct WebM links |
Dateigröße | 16.89 KB |
Installationsanzahl | 1,938 |
Aktuelle Version | 1.51 |
Letztes Update | 2017-11-22 |
Veröffentlichungsdatum | 2017-11-22 |
Bewertung | 3.68/5 Insgesamt 22 Bewertungen |
Entwickler | Miller |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "WebM Options (Premium)", "description": "Set default attributes for direct WebM links", "version": "1.51", "manifest_version": 2, "permissions": [ "storage" ], "options_page": "options.html", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*.webm", "https:\/\/*\/*.webm", "file:\/\/*\/*.webm" ], "js": [ "webmoptions.js" ], "run_at": "document_start" } ] } |