diff --git a/platform/chromium/manifest.json b/platform/chromium/manifest.json index 6c451fc246ab5..6d535eb37791d 100644 --- a/platform/chromium/manifest.json +++ b/platform/chromium/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "uBlock Origin", - "version": "1.9.17.100", + "version": "1.10.0", "default_locale": "en", "description": "__MSG_extShortDesc__", diff --git a/platform/edge/manifest.json b/platform/edge/manifest.json index 1d441a72c9125..a7cadc4a72585 100644 --- a/platform/edge/manifest.json +++ b/platform/edge/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "uBlock Origin", - "version": "1.9.17.100", + "version": "1.10.0", "default_locale": "en", "description": "__MSG_extShortDesc__", diff --git a/src/_locales/da/messages.json b/src/_locales/da/messages.json index e64f7facd8822..68b994610c549 100644 --- a/src/_locales/da/messages.json +++ b/src/_locales/da/messages.json @@ -420,7 +420,7 @@ "description":"English: List of your dynamic filtering rules." }, "rulesFormatHint":{ - "message":"Regelsyntaks: kilde destination type handling<\/code> (Fuld dokumentation<\/a>).", + "message":"Regelsyntaks: kilde destination type handling<\/code> (Fuld dokumentation<\/a>).", "description":"English: dynamic rule syntax and full documentation." }, "whitelistPrompt":{ diff --git a/src/document-suspended.html b/src/document-suspended.html deleted file mode 100644 index f445eb2ec72cb..0000000000000 --- a/src/document-suspended.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/js/document-suspended.js b/src/js/document-suspended.js deleted file mode 100644 index 29a979391a469..0000000000000 --- a/src/js/document-suspended.js +++ /dev/null @@ -1,46 +0,0 @@ -/******************************************************************************* - - uBlock Origin - a browser extension to block requests. - Copyright (C) 2016 Raymond Hill - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see {http://www.gnu.org/licenses/}. - - Home: https://github.com/gorhill/uBlock -*/ - -'use strict'; - -/******************************************************************************/ - -(function() { - var matches = /url=([^&]+)/.exec(window.location.search); - if ( matches === null ) { return; } - - var onMessage = function(msg) { - if ( msg.what !== 'ublockOrigin-readyState-complete' ) { - return; - } - vAPI.messaging.removeChannelListener('document-suspended.js', onMessage); - window.location.replace(document.querySelector('body > a').href); - }; - - var link = document.querySelector('body > a'), - url = decodeURIComponent(matches[1]); - link.setAttribute('href', url); - link.appendChild(document.createTextNode(url)); - - vAPI.messaging.addChannelListener('document-suspended.js', onMessage); -})(); - -/******************************************************************************/