Greasy Fork is available in English.

PushBullet

PushBullet API

此脚本不应被直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.greasyfork.org/scripts/418543/879740/PushBullet.js

脚本作者
wdssmq
版本
0.0.1.20201212112405
创建日期
2020-12-12
最近更新
2020-12-12
许可证
暂无

alexschneider/pushbullet-js: Client side javascript pushbullet

const objPB = window.PushBullet || {};
objPB.APIKey = "o.XXXXXXXXXXXXXXXXXXXX";
objPB.isGM = true;
objPB.push("link", null, null, {title: "<your title here>", url: "<your url here>", body: "<your optional body here>"}, function(err, res) {
  if(err) {
    throw err;
  } else {
    console.log(res);
  }
});