Greasy Fork is available in English.

PushBullet

PushBullet API

Questo script non dovrebbe essere installato direttamente. È una libreria per altri script da includere con la chiave // @require https://update.greasyfork.org/scripts/418543/879740/PushBullet.js

Autore
wdssmq
Versione
0.0.1.20201212112405
Creato il
12/12/2020
Aggiornato il
12/12/2020
Licenza
Non disponibile

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);
  }
});