-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Configurable notification method, as suggested on #5
- Loading branch information
Showing
3 changed files
with
43 additions
and
5 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
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
<em:id>{86054B0A-BD85-42F9-8E58-8794EC6F6EA1}</em:id> | ||
<em:type>2</em:type> | ||
<em:name>GitHub Extension Installer</em:name> | ||
<em:version>1.4a3</em:version> | ||
<em:version>1.4a4</em:version> | ||
<em:creator>Diego Casorran <[email protected]></em:creator> | ||
<em:description>Install Browser Extensions straight from GitHub Repositories</em:description> | ||
<em:contributor>Zulkarnain K.</em:contributor> | ||
|
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,6 +1,15 @@ | ||
<?xml version="1.0"?> | ||
<vbox xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> | ||
<setting pref="extensions.githubextensioninstaller.nme" type="menulist" title="Notification Method"> | ||
<menulist> | ||
<menupopup> | ||
<menuitem value="0" label="None"/> | ||
<menuitem value="1" label="Modal Dialog"/> | ||
<menuitem value="2" label="Alerts Service"/> | ||
</menupopup> | ||
</menulist> | ||
</setting> | ||
<setting pref="extensions.githubextensioninstaller.prs" type="string" title="PR Repos:"> | ||
Comma-separated list of repositories where the button will be added on PRs. | ||
Comma-separated list of repositories where the button will be added on its PRs. | ||
</setting> | ||
</vbox> |