Skip to content

Commit

Permalink
adding readme.md and extending the inputfields
Browse files Browse the repository at this point in the history
  • Loading branch information
joemay96 committed Jan 18, 2022
1 parent 22e6953 commit 147ad3d
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,24 @@
# extension-cli
A Firefox and Chrome Extension Tool to boilerplate a manifest.json and other files

## Ressources
Mainfest file structure: [Manifest-Doc](https://developer.chrome.com/docs/extensions/mv3/manifest/)

### Included Chrome APIs that need permission
[Alarms](https://developer.chrome.com/docs/extensions/reference/alarms/)
[Storage](https://developer.chrome.com/docs/extensions/reference/storage/)
[Commands | Keyboard Shorcuts](https://developer.chrome.com/docs/extensions/reference/commands/)
[Cookies](https://developer.chrome.com/docs/extensions/reference/cookies/)
[Notifications](https://developer.chrome.com/docs/extensions/reference/notifications/)
[Scripting](https://developer.chrome.com/docs/extensions/reference/scripting/)
[WebRequest](https://developer.chrome.com/docs/extensions/reference/webRequest/)
[declarativeNetRequest](https://developer.chrome.com/docs/extensions/reference/declarativeNetRequest/)
[FileBrowser](https://developer.chrome.com/docs/extensions/reference/fileBrowserHandler/)
[History](https://developer.chrome.com/docs/extensions/reference/history/)

### General Useful APIs
[Events](https://developer.chrome.com/docs/extensions/reference/events/)
[Extension](https://developer.chrome.com/docs/extensions/reference/extension/)
[PageAction](https://developer.chrome.com/docs/extensions/reference/pageAction/)
[i18n](https://developer.chrome.com/docs/extensions/reference/i18n/)

12 changes: 12 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,18 @@ inquirer
message: "Manifest Version: ",
default: 3
},
{
type: "input",
name: "author",
message: "Author: ",
default: ""
},
{
type: "input",
name: "locale",
message: "Default locale: ",
default: "en"
},
{
type: "checkbox",
name: "options",
Expand Down

0 comments on commit 147ad3d

Please sign in to comment.