parent
53de1eae53
commit
dbe7c603f9
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -4,6 +4,18 @@ 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/),
|
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).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [1.6.8] - 2019-07-28
|
||||||
|
|
||||||
|
### Compatibility note
|
||||||
|
- Require Firefox >= 55
|
||||||
|
- Require Chrome >= 22
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Improvements on check for android systems ([#206](https://gitlab.com/KevinRoebert/ClearUrls/issues/206))
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- [#205](https://gitlab.com/KevinRoebert/ClearUrls/issues/205)
|
||||||
|
|
||||||
## [1.6.7] - 2019-07-25
|
## [1.6.7] - 2019-07-25
|
||||||
|
|
||||||
### Compatibility note
|
### Compatibility note
|
||||||
|
|
|
@ -25,11 +25,6 @@
|
||||||
* @return {Array} redirectUrl or none
|
* @return {Array} redirectUrl or none
|
||||||
*/
|
*/
|
||||||
function pureCleaning(url) {
|
function pureCleaning(url) {
|
||||||
// The URL is already cleaned
|
|
||||||
if(lastVisited === url) {
|
|
||||||
return url;
|
|
||||||
}
|
|
||||||
|
|
||||||
var cleanURL = url;
|
var cleanURL = url;
|
||||||
|
|
||||||
for (var i = 0; i < providers.length; i++) {
|
for (var i = 0; i < providers.length; i++) {
|
||||||
|
|
|
@ -158,7 +158,6 @@ function initSettings()
|
||||||
storage.badged_color = "ffa500";
|
storage.badged_color = "ffa500";
|
||||||
storage.hashURL = "https://gitlab.com/KevinRoebert/ClearUrls/-/jobs/artifacts/master/raw/rules.min.hash?job=hash%20rules";
|
storage.hashURL = "https://gitlab.com/KevinRoebert/ClearUrls/-/jobs/artifacts/master/raw/rules.min.hash?job=hash%20rules";
|
||||||
storage.ruleURL = "https://gitlab.com/KevinRoebert/ClearUrls/raw/master/data/data.min.json";
|
storage.ruleURL = "https://gitlab.com/KevinRoebert/ClearUrls/raw/master/data/data.min.json";
|
||||||
storage.reportServer = "https://clearurls.xn--rb-fka.it";
|
|
||||||
storage.contextMenuEnabled = true;
|
storage.contextMenuEnabled = true;
|
||||||
storage.historyListenerEnabled = true;
|
storage.historyListenerEnabled = true;
|
||||||
|
|
||||||
|
|
|
@ -69,9 +69,11 @@ function reload()
|
||||||
*/
|
*/
|
||||||
function checkOSAndroid()
|
function checkOSAndroid()
|
||||||
{
|
{
|
||||||
chrome.runtime.getPlatformInfo(function(info) {
|
if(os === undefined || os === null || os === "") {
|
||||||
os = info.os;
|
chrome.runtime.getPlatformInfo(function(info) {
|
||||||
});
|
os = info.os;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
if(os == "android")
|
if(os == "android")
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"name": "ClearURLs",
|
"name": "ClearURLs",
|
||||||
"version": "1.6.7",
|
"version": "1.6.8",
|
||||||
"author": "Kevin R.",
|
"author": "Kevin R.",
|
||||||
"description": "Remove tracking elements from URLs.",
|
"description": "Remove tracking elements from URLs.",
|
||||||
"homepage_url": "https://gitlab.com/KevinRoebert/ClearUrls",
|
"homepage_url": "https://gitlab.com/KevinRoebert/ClearUrls",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user