2014-11-15 19:15:11 +01:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2014-12-17 21:33:53 +01:00
|
|
|
µBlock - a browser extension to block requests.
|
2014-11-15 19:15:11 +01:00
|
|
|
Copyright (C) 2014 The µBlock authors
|
|
|
|
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
|
|
|
|
// For background page or non-background pages
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
(function() {
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
self.vAPI = self.vAPI || {};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
// http://www.w3.org/International/questions/qa-scripts#directions
|
2014-11-23 18:21:06 +01:00
|
|
|
|
|
|
|
var setScriptDirection = function(language) {
|
2014-11-15 19:15:11 +01:00
|
|
|
document.body.setAttribute(
|
|
|
|
'dir',
|
2014-12-08 08:18:13 +01:00
|
|
|
['ar', 'he', 'fa', 'ps', 'ur'].indexOf(language) !== -1 ? 'rtl' : 'ltr'
|
2014-11-15 19:15:11 +01:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
vAPI.download = function(details) {
|
2014-11-23 18:21:06 +01:00
|
|
|
if ( !details.url ) {
|
2014-11-15 19:15:11 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var a = document.createElement('a');
|
|
|
|
|
2014-11-23 18:21:06 +01:00
|
|
|
if ( 'download' in a ) {
|
2014-11-15 19:15:11 +01:00
|
|
|
a.href = details.url;
|
|
|
|
a.setAttribute('download', details.filename || '');
|
|
|
|
a.dispatchEvent(new MouseEvent('click'));
|
2014-11-23 18:21:06 +01:00
|
|
|
return;
|
2014-11-15 19:15:11 +01:00
|
|
|
}
|
2014-11-23 18:21:06 +01:00
|
|
|
var messager = vAPI.messaging.channel('_download');
|
|
|
|
messager.send({
|
|
|
|
what: 'gotoURL',
|
|
|
|
details: {
|
|
|
|
url: details.url,
|
|
|
|
index: -1
|
|
|
|
}
|
|
|
|
});
|
|
|
|
messager.close();
|
2014-11-15 19:15:11 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-01-12 20:39:23 +01:00
|
|
|
vAPI.insertHTML = function(node, html) {
|
|
|
|
node.innerHTML = html;
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-11-15 19:15:11 +01:00
|
|
|
vAPI.getURL = function(path) {
|
|
|
|
return safari.extension.baseURI + path;
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-01-11 18:41:52 +01:00
|
|
|
// Supported languages
|
|
|
|
// First language is the default
|
|
|
|
|
2014-11-23 18:21:06 +01:00
|
|
|
vAPI.i18nData = [
|
2015-01-11 18:41:52 +01:00
|
|
|
'en', 'ar', 'ca', 'cs', 'da', 'de', 'el', 'es', 'et', 'fi', 'fil',
|
|
|
|
'fr', 'he', 'hi', 'hr', 'hu', 'id', 'it', 'ja', 'mr', 'nb', 'nl', 'pl',
|
|
|
|
'pt-BR', 'pt-PT', 'ro', 'ru', 'sv', 'tr', 'uk', 'vi', 'zh-CN', 'zh-TW'
|
2014-11-23 18:21:06 +01:00
|
|
|
];
|
|
|
|
|
2014-12-08 08:18:13 +01:00
|
|
|
vAPI.i18n = navigator.language;
|
2014-11-23 18:21:06 +01:00
|
|
|
|
2014-12-28 21:26:06 +01:00
|
|
|
if ( vAPI.i18nData.indexOf(vAPI.i18n) === -1 ) {
|
2014-11-23 18:21:06 +01:00
|
|
|
vAPI.i18n = vAPI.i18n.slice(0, 2);
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-12-28 21:26:06 +01:00
|
|
|
if ( vAPI.i18nData.indexOf(vAPI.i18n) === -1 ) {
|
2014-11-23 18:21:06 +01:00
|
|
|
vAPI.i18n = vAPI.i18nData[0];
|
|
|
|
}
|
2014-11-15 19:15:11 +01:00
|
|
|
}
|
|
|
|
|
2014-11-23 18:21:06 +01:00
|
|
|
setScriptDirection(vAPI.i18n);
|
|
|
|
|
|
|
|
var xhr = new XMLHttpRequest;
|
2014-11-15 19:15:11 +01:00
|
|
|
xhr.overrideMimeType('application/json;charset=utf-8');
|
2014-12-02 08:13:33 +01:00
|
|
|
xhr.open('GET', './_locales/' + vAPI.i18n + '.json', false);
|
2014-11-15 19:15:11 +01:00
|
|
|
xhr.send();
|
|
|
|
vAPI.i18nData = JSON.parse(xhr.responseText);
|
|
|
|
|
|
|
|
vAPI.i18n = function(s) {
|
2015-01-12 04:34:47 +01:00
|
|
|
return this.i18nData[s] || '';
|
2014-11-15 19:15:11 +01:00
|
|
|
};
|
|
|
|
|
2014-12-21 18:48:43 +01:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-12-25 14:53:30 +01:00
|
|
|
vAPI.closePopup = function() {
|
2015-01-13 21:55:52 +01:00
|
|
|
var popover = safari.extension.popovers[0];
|
|
|
|
if ( popover ) {
|
|
|
|
popover.hide();
|
2014-12-25 14:53:30 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-11-15 19:15:11 +01:00
|
|
|
})();
|