Version 1.8.3

+ Fixed OR case
This commit is contained in:
Kevin Röbert 2019-09-23 23:36:24 +02:00
parent b26b6f9aec
commit d5d6f58482
3 changed files with 12 additions and 3 deletions

View File

@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.8.3] - 2019-09-23
### Compatibility note
- Require Firefox >= 55
- Require Chrome >= 22
### Fixed
- Fixed OR case
## [1.8.2] - 2019-09-23
### Compatibility note

View File

@ -631,8 +631,8 @@ function start()
* Cancel the active request.
*/
if(result.redirect &&
request.type === 'main_frame' ||
request.type === 'sub_frame')
(request.type === 'main_frame' ||
request.type === 'sub_frame'))
{
if(providers[i].shouldForceRedirect() ) {
browser.tabs.update(request.tabId, {url: result.url});

View File

@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "ClearURLs",
"version": "1.8.2",
"version": "1.8.3",
"author": "Kevin Röbert",
"description": "Remove tracking elements from URLs.",
"homepage_url": "https://gitlab.com/KevinRoebert/ClearUrls",