Skip to content
This repository was archived by the owner on Nov 15, 2017. It is now read-only.

Commit 4784881

Browse files
committed
new version
1 parent 74c1f41 commit 4784881

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

js/popup.js

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1545,10 +1545,7 @@ function bindToTabHandler(tabs) {
15451545
function gotoExtensionURL() {
15461546
var url = $(this).data('extensionUrl');
15471547
if ( url ) {
1548-
chrome.runtime.sendMessage({
1549-
what: 'gotoExtensionURL',
1550-
url: url
1551-
});
1548+
chrome.runtime.sendMessage({ what: 'gotoExtensionURL', url: url });
15521549
}
15531550
}
15541551

@@ -1557,10 +1554,7 @@ function gotoExtensionURL() {
15571554
function gotoExternalURL() {
15581555
var url = $(this).data('externalUrl');
15591556
if ( url ) {
1560-
chrome.runtime.sendMessage({
1561-
what: 'gotoURL',
1562-
url: url
1563-
});
1557+
chrome.runtime.sendMessage({ what: 'gotoURL', url: url });
15641558
}
15651559
}
15661560

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "__MSG_extName__",
44
"short_name": "HTTPSB",
5-
"version": "0.8.6.4",
5+
"version": "0.8.7.0",
66
"description": "__MSG_extShortDesc__",
77
"icons": {
88
"16": "icon_16.png",

0 commit comments

Comments
 (0)