Skip to content

Commit

Permalink
Merge pull request meetfranz#47 from hdkiller/develop
Browse files Browse the repository at this point in the history
Wunderlist & Pivotal Tracker plugin
  • Loading branch information
adlk authored Dec 5, 2016
2 parents 8db2f71 + 05423b5 commit ed23718
Show file tree
Hide file tree
Showing 10 changed files with 1,801 additions and 0 deletions.
Binary file added pivotaltracker/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions pivotaltracker/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions pivotaltracker/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = Franz => Franz;
23 changes: 23 additions & 0 deletions pivotaltracker/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "pivotal",
"version": "1.0.0",
"description": "Pivotal Tracker",
"main": "index.js",
"author": "Laszlo Racz <[email protected]>",
"license": "MIT",
"config": {
"serviceURL": "https://www.pivotaltracker.com/signin",
"serviceName": "Pivotal Tracker",
"message": "",
"popup": [],
"hasNotificationSound": true,
"hasIndirectMessages": false,
"hasTeamID": false,
"customURL": false,
"hostedOnly": false,
"webviewOptions": {
"disablewebsecurity": ""
},
"openDevTools": false
}
}
13 changes: 13 additions & 0 deletions pivotaltracker/webview.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
module.exports = (Franz, options) => {

function getMessages() {
var bell = document.querySelectorAll("#view65 > span")[0];

counter = parseInt(bell.innerText);

Franz.setBadge(counter);
};

Franz.loop(getMessages);

}
Binary file added wunderlist/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit ed23718

Please sign in to comment.