Skip to content

Commit

Permalink
Open options on install.
Browse files Browse the repository at this point in the history
This will be the only change in 1.0.11.
  • Loading branch information
aghorler authored Feb 8, 2017
1 parent 477f360 commit ce29108
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions js/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,9 @@ chrome.storage.local.get(null, function(items){
}
}
});

chrome.runtime.onInstalled.addListener(function(details){
if(details.reason == "install"){
chrome.runtime.openOptionsPage();
}
});
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "WebRTC Leak Prevent",
"version": "1.0.10",
"version": "1.0.11",
"description": "Prevent WebRTC leaks, without blocking WebRTC.",
"icons": {
"128": "/img/icon128.png"
Expand Down

0 comments on commit ce29108

Please sign in to comment.