Skip to content

Commit 839bf49

Browse files
committed
disable install url
1 parent 1ac0acd commit 839bf49

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "GitX- Private notes for open source projects",
33
"short_name": "GitX",
4-
"version": "1.0.0",
4+
"version": "1.0.1",
55
"manifest_version": 2,
66
"description": "Chrome extension for adding private notes in Github",
77
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "GitX",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"license": "MIT",
55
"description": "Chrome extension for adding private comments in Github",
66
"main": "webpack.config.js",

src/background.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ document.addEventListener('DOMContentLoaded', () => {
4646
window.chrome.runtime.setUninstallURL(UN_INSTALL_URL);
4747
window.chrome.runtime.onInstalled.addListener((details) => {
4848
if (details.reason === 'install') {
49-
window.chrome.tabs.create({ url: INSTALL_URL });
49+
// window.chrome.tabs.create({ url: INSTALL_URL });
5050
}
5151
});
5252

0 commit comments

Comments
 (0)