Skip to content

Commit 2727b09

Browse files
committed
Update Latvian, Chinese Trad., GNU GPL license, minor options fix
1 parent d2cffcf commit 2727b09

11 files changed

+1016
-379
lines changed

_locales/lv/messages.json

+193-193
Large diffs are not rendered by default.

_locales/zh_TW/messages.json

+181-181
Large diffs are not rendered by default.

gpl.txt

+619
Large diffs are not rendered by default.

html/options.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ <h4 id="sectionname">General Settings</h4>
244244
</div>
245245
</div>
246246
<hr>
247-
<small>Translations: Chinese - Simplified (Chiuwing LUK), Czech (callipso), Dutch (Robert J. Klop), French (Marc0303), German (Daniel Neubauer (d4nin3u), Daniel Ring), Hungarian (Calmarius), Italian (Ezio Tescari), Japanese (noushibou, たこすけ), Korean (ARMO), Romanian (Sirius98), Russian (WatsonRus), Swedish (Guy Fredlund)</small>
247+
<small>Translations: Chinese - Simplified (Chiuwing LUK), Chinese - Traditional (Sam Lee), Czech (callipso), Dutch (Robert J. Klop), French (Marc0303), German (Daniel Neubauer (d4nin3u), Daniel Ring), Hungarian (Calmarius), Italian (Ezio Tescari), Japanese (noushibou, たこすけ), Korean (ARMO), Latvian (Vladimirs Smirnovs), Romanian (Sirius98), Russian (WatsonRus), Swedish (Guy Fredlund)</small>
248248
</div>
249249
</div>
250250
</div>

js/common.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
// (c) Andrew Y.
1+
// ScriptSafe - Copyright (C) andryou
2+
// Distributed under the terms of the GNU General Public License
3+
// The GNU General Public License can be found in the gpl.txt file. Alternatively, see <http://www.gnu.org/licenses/>.
24
'use strict';
35
function baddies(src, amode, antisocial, lookupmode) {
46
lookupmode = lookupmode || 1;

js/options.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
// (c) Andrew Y.
1+
// ScriptSafe - Copyright (C) andryou
2+
// Distributed under the terms of the GNU General Public License
3+
// The GNU General Public License can be found in the gpl.txt file. Alternatively, see <http://www.gnu.org/licenses/>.
24
'use strict';
35
var version = (function () {
46
var xhr = new XMLHttpRequest();
@@ -487,6 +489,7 @@ function downloadtxt() {
487489
downloadLink.remove();
488490
}
489491
function updateExport() {
492+
settingnames = [];
490493
$("#settingsexport").val("");
491494
for (var i in localStorage) {
492495
if (i != "version" && i != "whiteListCount" && i != "blackListCount" && i.substr(0, 2) != "zb" && i.substr(0, 2) != "zw") {

js/popup.js

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// ScriptSafe - Copyright (C) andryou
2+
// Distributed under the terms of the GNU General Public License
3+
// The GNU General Public License can be found in the gpl.txt file. Alternatively, see <http://www.gnu.org/licenses/>.
14
var version = (function () {
25
var xhr = new XMLHttpRequest();
36
xhr.open('GET', chrome.extension.getURL('../manifest.json'), false);

js/scriptsafe.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
// ScriptSafe by Andrew
1+
// ScriptSafe - Copyright (C) andryou
2+
// Distributed under the terms of the GNU General Public License
3+
// The GNU General Public License can be found in the gpl.txt file. Alternatively, see <http://www.gnu.org/licenses/>.
24
// Credits and ideas: NotScripts, AdBlock Plus for Chrome, Ghostery, KB SSL Enforcer
35
'use strict';
46
var version = (function () {

js/ss.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
// ScriptSafe by Andrew
1+
// ScriptSafe - Copyright (C) andryou
2+
// Distributed under the terms of the GNU General Public License
3+
// The GNU General Public License can be found in the gpl.txt file. Alternatively, see <http://www.gnu.org/licenses/>.
24
var savedBeforeloadEvents = new Array();
35
var timer;
46
var iframe = 0;

js/updated.js

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// ScriptSafe - Copyright (C) andryou
2+
// Distributed under the terms of the GNU General Public License
3+
// The GNU General Public License can be found in the gpl.txt file. Alternatively, see <http://www.gnu.org/licenses/>.
14
document.addEventListener('DOMContentLoaded', function () {
25
var version = (function () {
36
var xhr = new XMLHttpRequest();

js/webrtctest.js

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// ScriptSafe - Copyright (C) andryou
2+
// Distributed under the terms of the GNU General Public License
3+
// The GNU General Public License can be found in the gpl.txt file. Alternatively, see <http://www.gnu.org/licenses/>.
14
'use strict';
25
var rtcstatus = null;
36
var rtctest = self.RTCPeerConnection || self.webkitRTCPeerConnection;

0 commit comments

Comments
 (0)