Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

# This script assumes the following directory structure:
# ./
# manifest.json (optional - for even newer extensions)
# chrome.manifest (optional - for newer extensions)
# install.rdf
# (other files listed in $ROOT_FILES)
Expand Down Expand Up @@ -85,7 +86,7 @@ for DIR in $ROOT_DIRS; do
done

# Copy other files to the root of future XPI.
for ROOT_FILE in $ROOT_FILES install.rdf chrome.manifest; do
for ROOT_FILE in $ROOT_FILES install.rdf chrome.manifest manifest.json; do
cp --verbose $ROOT_FILE $TMP_DIR
if [ -f $ROOT_FILE ]; then
echo $ROOT_FILE >> files
Expand Down
Binary file added content/icon23x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"manifest_version": 2,
"applications": {
"gecko": {
"id": "tbdialout@oak-wood.co.uk",
"strict_min_version": "68.0"
}
},
"name": "TBDialOut",
"description": "Place phone calls directly from Thunderbird's address book",
"version": "1.7.4",
"icons": {
"32": "content/icon32x32.png"
},
"legacy": {
"type": "xul",
"options": {
"page": "chrome://tbdialout/content/options.xul",
"open_in_tab": true
}
}
}