-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove background.js * Cleanup storage access * Cleanup GUI elements * Remove jQuery * Update default settings * Tabs permission no longer needed * Cleanup and lint * Cleanup menu management * Cleanup settings
- Loading branch information
Showing
5 changed files
with
184 additions
and
305 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,21 @@ | ||
{ | ||
"name": "Lookup Assistant", | ||
"version": "2.0", | ||
"manifest_version": 2, | ||
|
||
"name": "Lookup Assistant", | ||
"version": "2.1.0", | ||
|
||
"description": "Lookup highlighted text.", | ||
"icons": { | ||
"16": "assets/icon_16.png", | ||
"128": "assets/icon_128.png", | ||
"48": "assets/icon_48.png", | ||
"128": "assets/icon_128.png" | ||
"16": "assets/icon_16.png" | ||
}, | ||
|
||
"background": { | ||
"scripts": ["scripts.js", "background.js"] | ||
"scripts": ["scripts.js"] | ||
}, | ||
|
||
"options_page": "options.html", | ||
"permissions": ["contextMenus", "tabs"] | ||
|
||
"permissions": ["contextMenus"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.