Skip to content

Commit

Permalink
Merge pull request #44 from inuyasha82/master
Browse files Browse the repository at this point in the history
Merge for version 1.3
  • Loading branch information
inuyasha82 committed Dec 5, 2015
2 parents 9608736 + 7129ca5 commit ce1ddb9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 19 deletions.
5 changes: 1 addition & 4 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,13 @@

"permissions": [
"activeTab",
"webRequest",
"webRequestBlocking",
"*://*/*",
"tabs", "<all_urls>",
"webNavigation"
],

"background": {
"scripts": ["src/background.js"],
"persistent": true
"persistent": false
},

"page_action": {
Expand Down
9 changes: 0 additions & 9 deletions src/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,6 @@ chrome.runtime.onInstalled.addListener(function(details){
console.log("Reason: " + details.reason);
});

chrome.webRequest.onBeforeRequest.addListener(
function(details) {
if(details.method == "POST")
console.log(JSON.stringify(details));
},
{urls: ["<all_urls>"]},
["blocking", "requestBody"]
);

function lastError(){
if(chrome.runtime.lastError){
console.log(chrome.runtime.lastError.message);
Expand Down
2 changes: 0 additions & 2 deletions src/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@ function click(e) {
export_parameters_list("csv");
} else if(e.target.id=="import"){
get_current_tab(function(tab){
console.log("boh");
chrome.tabs.executeScript(tab.id, {file: "src/content_script.js"}, function(element){
console.log("aaah");
});

});
Expand Down
9 changes: 5 additions & 4 deletions src/post_update.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@
<div id="container">
<h1><img src="../images/icon.png" height="80" width="80">Parameters Editor has been updated.</h1>
<h2>Changelog</h2>
New in version 1.2
New in version 1.3
<ul>
<li>Add share buttons (now you can share this extension with your friends)</li>
<li>Fix bug #32 - Enter doesn't work when a new parameter is added.</li>
<li>When the extension will be updated a changelog screen (this) appear</li>
<li>Fix bug #42 - Error on add new parameter</li>
<li>Fix bug #39 - Fix bug where empty parameter was being replaced by "undefined" </li>
<li>Input fields are larger and better aligned (by JaderDias)</li>
<li>Fix html code on post_update.html</li>
</ul>
<h2>Source code</h2>
This extension is Open Source, released under GPLv3. You can download sources from <a href="http://c103.github.io/chrome_parameters/">GitHub</a>
Expand Down

0 comments on commit ce1ddb9

Please sign in to comment.