PushBullet

PushBullet API

이 스크립트는 직접 설치하는 용도가 아닙니다. 다른 스크립트에서 메타 지시문 // @require https://update.greasyfork.org/scripts/418543/879740/PushBullet.js을(를) 사용하여 포함하는 라이브러리입니다.

작성자
wdssmq
버전
0.0.1.20201212112405
생성일
2020-12-12
갱신일
2020-12-12
크기
7.53KB
라이선스
해당 없음

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