ScriptSafe is on Chrome, Opera, and now: Firefox!
My sincere thanks to all testers, translators, and users for your support over the past 6 years.
In this release you will find the following updates:
- - v1.0.9.3 BETA:
- - Added ability to temporarily disable ScriptSafe via the panel
+ - v1.0.9.3:
+ - Added ability to temporarily disable ScriptSafe for a set time via the panel (useful if buying something online)
- Added ability to selectively allow Browser Plugins Enumeration
- Added ability to randomize user agents: on every request or every x minutes
- Minor panel tweaks
diff --git a/js/options.js b/js/options.js
index 2794160..006d694 100644
--- a/js/options.js
+++ b/js/options.js
@@ -329,13 +329,13 @@ function saveCheckbox(id) {
localStorage[id] = document.getElementById(id).checked;
}
function saveElement(id) {
- localStorage[id] = $("#"+id).val().replace(/\|/g, '');
+ localStorage[id] = $("#"+id).val().replace(/[~|]/g, '');
}
function saveList(id) {
localStorage[id] = JSON.stringify($("#"+id).val().split("\n"));
}
function loadOptions() {
- $("#title").html("ScriptSafe v"+version+" BETA");
+ $("#title").html("ScriptSafe v"+version);
loadCheckbox("enable");
loadCheckbox("syncenable");
if (!$("#syncenable").prop('checked')) $("#syncbuttons").hide();
@@ -494,7 +494,7 @@ function saveOptions() {
userAgents = userAgents.split("\n");
var sanitizedAgent;
for (var i=0, userAgentNum=userAgents.length; i