PushBullet

PushBullet API

Script này sẽ không được không được cài đặt trực tiếp. Nó là một thư viện cho các script khác để bao gồm các chỉ thị meta // @require https://update.greasyfork.org/scripts/418543/879740/PushBullet.js

Tác giả
wdssmq
Phiên bản
0.0.1.20201212112405
Đã tạo
12-12-2020
Đã cập nhật
12-12-2020
Size
8 KB
Giấy phép
N/A

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