Skip to content
This repository has been archived by the owner on Jan 1, 2021. It is now read-only.

Commit

Permalink
Apply patch from https://github.com/Martii
Browse files Browse the repository at this point in the history
  • Loading branch information
neilmayhew committed Jan 15, 2020
1 parent 4a29d38 commit 6e6f85a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
12 changes: 10 additions & 2 deletions src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"128": "common/images/icon128.png",
"512": "common/images/icon512.png"
},
"permissions": ["contextMenus", "storage"],
"permissions": ["menus", "storage"],
"background": {"page": "chrome/background.html"},
"content_scripts": [
{
Expand Down Expand Up @@ -46,7 +46,15 @@

,"applications": {
"gecko": {
"id": "[email protected]"
"id": "[email protected]",
"strict_min_version": "68.0"
}
}
,"legacy": {
"type": "xul",
"options": {
"page": "common/options.html",
"open_in_tab": true
}
}
}
4 changes: 2 additions & 2 deletions utils/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
var fs = require('fs');
var file = require('file');
var archiver = require('archiver');
var MetaScript = require('MetaScript');
var MetaScript = require('metascript');


var BASE_DIR = '..';
Expand All @@ -22,7 +22,7 @@ var THUNDERBIRD_EXTENSION = file.path.join(DIST_DIR, 'thunderbird.xpi');

var CHROME_INPUT = [/^manifest\.json$/, /^common(\\|\/)/, /^chrome(\\|\/)/, /^_locales(\\|\/)/];
var FIREFOX_INPUT = CHROME_INPUT;
var THUNDERBIRD_INPUT = [/^chrome.manifest$/, /^install.rdf$/, /^common(\\|\/)/, /^firefox(\\|\/)/];
var THUNDERBIRD_INPUT = [/^manifest\.json$/, /^chrome.manifest$/, /^install.rdf$/, /^common(\\|\/)/, /^firefox(\\|\/)/, /^_locales(\\|\/)/];

var CHROME_PLATFORM = 'chrome';
var FIREFOX_PLATFORM = 'firefox';
Expand Down

0 comments on commit 6e6f85a

Please sign in to comment.