给WWW.XJ.HK做了一个浏览器插件

一,chrome为例
打开书签栏
Snipaste_2019-07-06_15-54-06.png

二,新建书签

  1. 任意选择一个网页,将其保存为书签;
  2. 右键点击这枚书签,选择修改编辑地址;
    3.将名称改成 收藏到星际 ,将网址改为下面的代码
    javascript:var xhr = new XMLHttpRequest();xhr.open("POST", 'https://www.xj.hk/?thread-create-0.htm', true);xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");xhr.onload = function () { alert("提交成功");};xhr.send("doctype=1&quotepid=0&fid=1&subject="+encodeURIComponent(document.location.href)+"&message=messagemessage&shuqian=yes");

Snipaste_2019-07-06_16-08-29.png

三,效果
浏览任意网页,点击这个书签就可以帮你把这个网址收藏到星际。成功后会弹出了一个提交成功。
Snipaste_2019-07-06_16-02-55.png

四,原理
https://sspai.com/post/44553

https://blog.csdn.net/shiyong1949/article/details/72471294

https://developer.mozilla.org/zh-CN/docs/Web/API/XMLHttpRequest/send

https://blog.csdn.net/fdipzone/article/details/46390573

本案例使用的ajax post提交
如果使用原生js post提交则会导致提交完,当前页面跳转走。

发表新评论