diff --git a/core/files.js b/core/files.js index 47aebb9b..3543087d 100644 --- a/core/files.js +++ b/core/files.js @@ -129,7 +129,9 @@ var files = { 'resources/p2p-media-loader-core/0.6.2/p2p-media-loader-core.min.jsm': true, // plyr CSS - 'resources/plyr/3.5.10/plyr.min.cssm': true, + // CSS cannot be loaded with the file extension .cssm (as shown on www.bitchute.com) + // Please do not change it. + 'resources/plyr/3.5.10/plyr.min.css': true, // Prototype 'resources/prototype/1.7.3.0/prototype.jsm': true, diff --git a/core/resources.js b/core/resources.js index 7f860499..ec069b44 100644 --- a/core/resources.js +++ b/core/resources.js @@ -187,7 +187,7 @@ var resources = { }, // plyr CSS 'plyrCSS': { - 'path': 'resources/plyr/{version}/plyr.min.cssm', + 'path': 'resources/plyr/{version}/plyr.min.css', 'type': 'text/css' }, // Prototype diff --git a/manifest.json b/manifest.json index dcf281c0..231e8245 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "LocalCDN (fork from Decentraleyes)", - "version": "2.1.9", + "version": "2.1.10", "browser_specific_settings": { "gecko": { "id": "{b86e4813-687a-43e6-ab65-0bde4ab75758}", diff --git a/pages/updates/updates.html b/pages/updates/updates.html index 4df0bb38..b0fb5f7d 100644 --- a/pages/updates/updates.html +++ b/pages/updates/updates.html @@ -24,6 +24,7 @@
Please update your uBlock/uMatrix rules diff --git a/resources/plyr/3.5.10/plyr.min.cssm b/resources/plyr/3.5.10/plyr.min.css similarity index 100% rename from resources/plyr/3.5.10/plyr.min.cssm rename to resources/plyr/3.5.10/plyr.min.css