mirror of
https://gitlab.com/KevinRoebert/ClearUrls
synced 2025-12-15 21:55:36 +07:00
Version 1.8.3
+ Fixed OR case
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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});
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user