New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ep_hide_referrer

Package Overview
Dependencies
Maintainers
2
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ep_hide_referrer - npm Package Compare versions

Comparing version

to
0.0.2

README.md

2

ep.json

@@ -6,3 +6,3 @@ {

"client_hooks": {
"postAceInit":"ep_hide_referrer/static/js/index"
"postAceInit": "ep_hide_referrer/static/js/index:postAceInit"
}

@@ -9,0 +9,0 @@ }

{
"name": "ep_hide_referrer",
"description": "Don't pass the referring URL to third parties. This handles the security/privacy issue where you don't want the third party service to know your pad URL",
"version": "0.0.1",
"version": "0.0.2",
"author": "johnyma22 (John McLear) <john@mclear.co.uk>",

@@ -6,0 +6,0 @@ "contributors": [ ],

exports.postAceInit = function(hook, context){
$('iframe[name="ace_outer"]').contents().find('iframe').contents().find("#innerdocbody").on('click', "a", function (e){
var r = confirm("following this link will leak the pad url of this pad, are you sure you want to continue?");
if(r){
window.open(e.currentTarget.innerHTML, '_blank');
e.preventDefault();
return false;
}else{
e.preventDefault();
return false;
}
prompt(
"Copy this link and paste it to the adress bar of some other browser tab\n(to prevent the browser from leaking this pad's confidential URL as a \"referer\").\nCtrl-C + Ctrl-T + Ctrl-V + Enter should do the trick on most browsers ;)",
e.currentTarget.innerHTML
);
e.preventDefault();
return false;
});
}