Skip to content

Commit

Permalink
Bug Fix
Browse files Browse the repository at this point in the history
Fixed a typo where in index.js,  was used where  should have been.
  • Loading branch information
32Bites committed Oct 11, 2021
1 parent e6f151c commit b190723
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ chrome.storage.sync.get('enabled', function (data) {
}, null);
enabled = true;
} else {
enabled_box = data.enabled;
enabled = data.enabled;
}
if (enabled) enabled_box.setAttribute("checked", "");
});
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"author": "Noah Shanaberger",
"description": "Download those pesky raw files on Github!",
"manifest_version": 2,
"version": "0.0.7",
"version": "0.0.7.1",
"background": {
"scripts": ["background.js"],
"persistent": true
Expand Down

0 comments on commit b190723

Please sign in to comment.