Manifest Housekeeping
This commit is contained in:
parent
d301614eba
commit
1d1d30d80f
8 changed files with 24 additions and 10 deletions
|
@ -7,6 +7,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
|
|||
ProjectSection(SolutionItems) = preProject
|
||||
background.js = background.js
|
||||
build-xpi.ps1 = build-xpi.ps1
|
||||
logger.js = logger.js
|
||||
manifest.json = manifest.json
|
||||
EndProjectSection
|
||||
ProjectSection(FolderGlobals) = preProject
|
||||
|
@ -28,6 +29,7 @@ EndProject
|
|||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "modules", "modules", "{75ED3C1E-D3C7-4546-9F2E-AC85859DDF4B}"
|
||||
ProjectSection(SolutionItems) = preProject
|
||||
modules\ExpressionSearchFilter.jsm = modules\ExpressionSearchFilter.jsm
|
||||
modules\logger.jsm = modules\logger.jsm
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_locales", "_locales", "{D446E5C6-BDDE-4091-BD1A-EC57170003CF}"
|
||||
|
@ -61,6 +63,12 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "img", "img", "{F266602F-175
|
|||
ProjectSection(SolutionItems) = preProject
|
||||
resources\img\full-logo.png = resources\img\full-logo.png
|
||||
resources\img\logo.png = resources\img\logo.png
|
||||
resources\img\logo128.png = resources\img\logo128.png
|
||||
resources\img\logo16.png = resources\img\logo16.png
|
||||
resources\img\logo32.png = resources\img\logo32.png
|
||||
resources\img\logo48.png = resources\img\logo48.png
|
||||
resources\img\logo64.png = resources\img\logo64.png
|
||||
resources\img\logo96.png = resources\img\logo96.png
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Global
|
||||
|
|
|
@ -1,16 +1,22 @@
|
|||
{
|
||||
"manifest_version": 2,
|
||||
"name": "AI Filter",
|
||||
"version": "1.1",
|
||||
"name": "Sortana",
|
||||
"version": "1.2.1",
|
||||
"default_locale": "en-US",
|
||||
"applications": { "gecko": { "id": "ai-filter@example" } },
|
||||
"applications": {
|
||||
"gecko": {
|
||||
"id": "ai-filter@jordanwages",
|
||||
"strict_min_version": "128.0",
|
||||
"strict_max_version": "128.*"
|
||||
}
|
||||
},
|
||||
"icons": {
|
||||
"16": "resources/img/logo.png",
|
||||
"32": "resources/img/logo.png",
|
||||
"48": "resources/img/logo.png",
|
||||
"64": "resources/img/logo.png",
|
||||
"96": "resources/img/logo.png",
|
||||
"128": "resources/img/logo.png"
|
||||
"16": "resources/img/logo16.png",
|
||||
"32": "resources/img/logo32.png",
|
||||
"48": "resources/img/logo48.png",
|
||||
"64": "resources/img/logo64.png",
|
||||
"96": "resources/img/logo96.png",
|
||||
"128": "resources/img/logo128.png"
|
||||
},
|
||||
"background": { "scripts": [ "background.js" ] },
|
||||
"experiment_apis": {
|
||||
|
@ -34,7 +40,7 @@
|
|||
},
|
||||
"options_ui": {
|
||||
"page": "options/options.html",
|
||||
"open_in_tab": false
|
||||
"open_in_tab": true
|
||||
},
|
||||
"permissions": [ "storage" ]
|
||||
}
|
||||
|
|
BIN
resources/img/logo128.png
Normal file
BIN
resources/img/logo128.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.2 KiB |
BIN
resources/img/logo16.png
Normal file
BIN
resources/img/logo16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 717 B |
BIN
resources/img/logo32.png
Normal file
BIN
resources/img/logo32.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.7 KiB |
BIN
resources/img/logo48.png
Normal file
BIN
resources/img/logo48.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.9 KiB |
BIN
resources/img/logo64.png
Normal file
BIN
resources/img/logo64.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4 KiB |
BIN
resources/img/logo96.png
Normal file
BIN
resources/img/logo96.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.4 KiB |
Loading…
Add table
Add a link
Reference in a new issue