-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
1,050 additions
and
67 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
github: [rugk, tdulcet] |
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
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
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 |
---|---|---|
|
@@ -34,6 +34,13 @@ | |
"background": { | ||
"page": "background/background.html" | ||
}, | ||
"content_scripts": [ | ||
{ | ||
"matches": ["<all_urls>"], | ||
"all_frames": true, | ||
"js": ["content_scripts/autocorrect.js"] | ||
} | ||
], | ||
"commands": { | ||
"_execute_browser_action": { | ||
"suggested_key": { | ||
|
@@ -65,10 +72,10 @@ | |
], | ||
// "search" currently not requested though, see https://discourse.mozilla.org/t/why-do-we-need-an-extra-permission-simply-for-starting-a-search/41174?u=rugkx | ||
|
||
"applications": { | ||
"browser_specific_settings": { | ||
"gecko": { | ||
"id": "[email protected]", | ||
"strict_min_version": "74.0" | ||
"strict_min_version": "87.0" | ||
} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -34,6 +34,13 @@ | |
"background": { | ||
"page": "background/background.html" | ||
}, | ||
"content_scripts": [ | ||
{ | ||
"matches": ["<all_urls>"], | ||
"all_frames": true, | ||
"js": ["content_scripts/autocorrect.js"] | ||
} | ||
], | ||
"commands": { | ||
"_execute_browser_action": { | ||
"suggested_key": { | ||
|
@@ -59,14 +66,15 @@ | |
|
||
"optional_permissions": [ | ||
"clipboardWrite", | ||
"search" | ||
"search", | ||
"tabs" | ||
], | ||
// "search" currently not requested though, see https://discourse.mozilla.org/t/why-do-we-need-an-extra-permission-simply-for-starting-a-search/41174?u=rugkx | ||
|
||
"applications": { | ||
"browser_specific_settings": { | ||
"gecko": { | ||
"id": "[email protected]", | ||
"strict_min_version": "74.0" | ||
"strict_min_version": "87.0" | ||
} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"manifest_version": 2, | ||
"name": "__MSG_extensionName__", | ||
"short_name": "__MSG_extensionNameShort__", | ||
"version": "0.9.1", | ||
"version": "0.9.4", | ||
"author": "rugk, Teal Dulcet", | ||
|
||
"description": "__MSG_extensionDescription__", | ||
|
@@ -60,10 +60,10 @@ | |
"clipboardWrite" | ||
], | ||
|
||
"applications": { | ||
"browser_specific_settings": { | ||
"gecko": { | ||
"id": "[email protected]", | ||
"strict_min_version": "87.0" | ||
"strict_min_version": "91.0" | ||
} | ||
} | ||
} |
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
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,8 +1,10 @@ | ||
import * as IconHandler from "/common/modules/IconHandler.js"; | ||
import * as AutocorrectHandler from "/common/modules/AutocorrectHandler.js"; | ||
import * as ContextMenu from "./modules/ContextMenu.js"; | ||
import * as OmniboxSearch from "./modules/OmniboxSearch.js"; | ||
|
||
// init modules | ||
IconHandler.init(); | ||
AutocorrectHandler.init(); | ||
ContextMenu.init(); | ||
OmniboxSearch.init(); |
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
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.