Merge pull request 'v2.2.5' (#9) from develop into master

This commit is contained in:
nobody 2020-05-30 15:10:55 +02:00
commit 040752199f
4 changed files with 11 additions and 6 deletions

View File

@ -1,5 +1,5 @@
# LocalCDN
A web browser extension that emulates Content Delivery Networks to improve your online privacy. It intercepts traffic, finds supported resources locally, and injects them into the environment. All of this happens automatically, so no prior configuration is required. Feel free to use the following [testing utility](https://localcdn.de/test/) to find out if you are properly protected. For more information, please read this [basic introduction from Decentraleyes](https://git.synz.io/Synzvato/decentraleyes/wikis/Simple-Introduction) or our [Wiki pages](https://codeberg.org/nobody/LocalCDN/wiki).
A web browser extension (and a fork of Decentraleyes) that emulates Content Delivery Networks to improve your online privacy. It intercepts traffic, finds supported resources locally, and injects them into the environment. All of this happens automatically, so no prior configuration is required. Feel free to use the following [testing utility](https://localcdn.de/test/) to find out if you are properly protected. For more information, please read this [basic introduction from Decentraleyes](https://git.synz.io/Synzvato/decentraleyes/wikis/Simple-Introduction) or our [Wiki pages](https://codeberg.org/nobody/LocalCDN/wiki).
## Differences between LocalCDN and Decentraleyes

View File

@ -175,7 +175,7 @@ requestAnalyzer._applyWhitelistedDomains = function () {
requestAnalyzer._applyManipulateDOMDomains = function () {
chrome.storage.local.get(Setting.DOMAINS_MANIPULATE_DOM, function (items) {
requestAnalyzer.manipulateDOMDomains = items.manipulateDOMDomains || {};
requestAnalyzer.manipulateDOMDomains = items.domainsManipulateDOM || {};
});
};

View File

@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "LocalCDN (fork from Decentraleyes)",
"version": "2.2.4",
"name": "LocalCDN",
"version": "2.2.5",
"browser_specific_settings": {
"gecko": {
"id": "{b86e4813-687a-43e6-ab65-0bde4ab75758}",

View File

@ -23,8 +23,7 @@
New in LocalCDN:
</div>
<ul>
<li>Improved charset detection in HTML source code</li>
<li>Implemented second domainlist to enable/disable DOM manipulation</li>
<li>Typo fixed, so that list for DOM manipulation can be read out again (<a href="https://codeberg.org/nobody/LocalCDN/issues/8">#8</a>)</li>
</ul>
<div class="topic-label">
Please update your uBlock/uMatrix rules
@ -41,6 +40,12 @@
<input id="button-copy-rule-set" type="button" value="Copy">
<hr/>
<h2>History</h2>
<p class='release-date'>2020-05-30 (v2.2.4)</p>
<ul>
<li>Improved charset detection in HTML source code</li>
<li>Implemented second domainlist to enable/disable DOM manipulation</li>
<li>Improved the height of the popup: Outsourced when there are too many injections.</li>
</ul>
<p class='release-date'>2020-05-23 (v2.2.3)</p>
<ul>
<li>Fixed: Identify correct charset if its in quotation marks</li>