Pinboard 书签在升级到 Firefox 85 后被阻止
Pinboard bookmarklet is blocked after upgrade to Firefox 85
popup bookmarklet worked well until updated to Firefox 85. Now it is blocked by Firefox. As I use this bookmarklet to bookmark websites to Pinbord,对所有网站都做例外是不现实的。如何让这个小书签不被屏蔽?
这个小书签的代码是:
javascript:
q=location.href;
if(document.getSelection){
d=document.getSelection();
}else{
d='';
};
p=document.title;
void(
open(
'https://pinboard.in/add?url='
+ encodeURIComponent(q)
+ '&description='
+ encodeURIComponent(d)
+ '&title='
+ encodeURIComponent(p),
'Pinboard',
'toolbar=no,width=700,height=350'
));
火狐屏蔽小书签时的截图:
@stmoebius 指出,它是 Firefox 85 的 bug。现在Firefox 86已经修复了。
popup bookmarklet worked well until updated to Firefox 85. Now it is blocked by Firefox. As I use this bookmarklet to bookmark websites to Pinbord,对所有网站都做例外是不现实的。如何让这个小书签不被屏蔽?
这个小书签的代码是:
javascript:
q=location.href;
if(document.getSelection){
d=document.getSelection();
}else{
d='';
};
p=document.title;
void(
open(
'https://pinboard.in/add?url='
+ encodeURIComponent(q)
+ '&description='
+ encodeURIComponent(d)
+ '&title='
+ encodeURIComponent(p),
'Pinboard',
'toolbar=no,width=700,height=350'
));
火狐屏蔽小书签时的截图:
@stmoebius 指出,它是 Firefox 85 的 bug。现在Firefox 86已经修复了。