Skip to content

Commit b931dba

Browse files
committed
release prep 0.6.3
1 parent 8838cf4 commit b931dba

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

info.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
</div>
2626
<div class="col-lg-8 text-left">
2727
<h1 class="inline-headers">AsanaNG</h1>
28-
<h4 class="inline-headers">Asana Extension for Chrome</h4>
28+
<h4 class="inline-headers">Unofficial Asana Extension for Chrome</h4>
2929
</div>
3030

3131
</div>

js/chrome/background.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ asanaModule.run(['AsanaConstants', function (AsanaConstants) {
2222
});
2323

2424
chrome.runtime.onInstalled.addListener(function(details){
25-
chrome.tabs.create({url: "info.html"});
25+
if(details.reason === "install")
26+
chrome.tabs.create({url: "info.html"});
2627
});
2728
}]);

manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"manifest_version" : 2,
33

4-
"name": "AsanaNG - Asana Extension for Chrome",
4+
"name": "AsanaNG - Unofficial Asana Extension for Chrome",
55
"short_name": "AsanaNG",
66
"description": "Access Asana - quick and easy",
7-
"version": "0.6.2",
7+
"version": "0.6.3",
88

99
"icons": {
1010
"16": "img/icon16.png",

0 commit comments

Comments
 (0)