Skip to content
This repository was archived by the owner on Apr 27, 2023. It is now read-only.

Commit 117e9f9

Browse files
authored
Merge pull request #73 from pureooze/browser-specific-manifest
Fixed issue where manifest is not tailored for specific browser
2 parents 74c5cae + c212ab8 commit 117e9f9

File tree

6 files changed

+57
-23
lines changed

6 files changed

+57
-23
lines changed

manifest/chrome.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"background": {
3+
"page": "background_page.html",
4+
"persistent": true
5+
},
6+
"commands": {
7+
"toggleSaka4": {
8+
"description": "Toggle Saka",
9+
"global": true
10+
}
11+
},
12+
"permissions": ["chrome://favicon/"],
13+
"key":
14+
"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsgFNwezxiHxK/AIKh9K4LVefUPIDisRzQLmmRBjFftr3yrxJuLBaO1LvMISsRlvbFmbZ0B6KHzyGDEnmOMIo3X9wUxBwSV+q3kigp3XFryllhOHbKcl+FUVMRQabBs49CS6ttq2l4Jx+ULEsmprqub+IV+cvY3slXxxuyMF0TjmnRwDYnSREgbfzK7g/msZ8e0gi+hrPETNVKOibbVwd8S7gSy0hDug71WOA338FGe08DiXpnVoKLL0fmd+TO6Z4fAhH+oSqr15WIt6qCglYmZi2BEydL0zhUcidkis0zJjNX5nQi0xzggmxwsMJyfmfGoniwsUg3rAy+M0v5gaSUQIDAQAB"
15+
}

static/manifest.json manifest/common.json

+3-13
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
"open_in_tab": true
1010
},
1111
"background": {
12-
"page": "background_page.html",
13-
"persistent": true
12+
"page": "background_page.html"
1413
},
1514
"commands": {
1615
"toggleSaka": {
@@ -34,8 +33,7 @@
3433
"suggested_key": {
3534
"default": "Ctrl+Shift+1"
3635
},
37-
"description": "Toggle Saka",
38-
"global": true
36+
"description": "Toggle Saka"
3937
}
4038
},
4139
"browser_action": {
@@ -56,20 +54,12 @@
5654
"sessions",
5755
"history",
5856
"bookmarks",
59-
"chrome://favicon/",
6057
"storage",
6158
"contextMenus"
6259
],
6360
"web_accessible_resources": [
6461
"saka.html",
6562
"material-icons.css",
6663
"MaterialIcons-Regular.woff2"
67-
],
68-
"key":
69-
"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsgFNwezxiHxK/AIKh9K4LVefUPIDisRzQLmmRBjFftr3yrxJuLBaO1LvMISsRlvbFmbZ0B6KHzyGDEnmOMIo3X9wUxBwSV+q3kigp3XFryllhOHbKcl+FUVMRQabBs49CS6ttq2l4Jx+ULEsmprqub+IV+cvY3slXxxuyMF0TjmnRwDYnSREgbfzK7g/msZ8e0gi+hrPETNVKOibbVwd8S7gSy0hDug71WOA338FGe08DiXpnVoKLL0fmd+TO6Z4fAhH+oSqr15WIt6qCglYmZi2BEydL0zhUcidkis0zJjNX5nQi0xzggmxwsMJyfmfGoniwsUg3rAy+M0v5gaSUQIDAQAB",
70-
"applications": {
71-
"gecko": {
72-
"id": "{7d7cad35-2182-4457-972d-5a41a2051240}"
73-
}
74-
}
64+
]
7565
}

manifest/firefox.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"applications": {
3+
"gecko": {
4+
"id": "{7d7cad35-2182-4457-972d-5a41a2051240}"
5+
}
6+
}
7+
}

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
"eslint-plugin-react": "^7.2.0",
5252
"eslint-plugin-standard": "^3.0.1",
5353
"extract-loader": "^2.0.1",
54+
"generate-json-webpack-plugin": "^0.3.1",
5455
"html-loader": "^0.4.5",
5556
"jest": "^23.5.0",
5657
"jest-dom": "^1.12.0",
@@ -66,7 +67,8 @@
6667
"sinon-chrome": "^2.3.1",
6768
"style-loader": "^0.18.2",
6869
"webpack": "^4.0.0",
69-
"webpack-cli": "^2.0.14"
70+
"webpack-cli": "^2.0.14",
71+
"webpack-merge": "^4.1.4"
7072
},
7173
"dependencies": {
7274
"fuse.js": "^3.2.0",

webpack.config.js

+19-9
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
const webpack = require('webpack');
22
const BabiliPlugin = require('babili-webpack-plugin');
33
const CopyWebpackPlugin = require('copy-webpack-plugin');
4-
5-
// process.traceDeprecation = true;
6-
// markdown convert to html
4+
const GenerateJsonPlugin = require('generate-json-webpack-plugin');
75
const marked = require('marked');
6+
const path = require('path');
7+
const merge = require('webpack-merge');
8+
const { version } = require('./manifest/common.json'); // mode controls:
89

910
const renderer = new marked.Renderer();
10-
11-
const path = require('path');
11+
// process.traceDeprecation = true;
12+
// markdown convert to html
1213

1314
module.exports = function webpackConfig(env) {
15+
const [mode, platform, benchmark] = env.split(':');
16+
1417
const config = {
1518
resolve: {
1619
alias: {
@@ -107,13 +110,20 @@ module.exports = function webpackConfig(env) {
107110
from: '**/config.json',
108111
to: 'config_[folder].json'
109112
}
110-
])
113+
]),
114+
new GenerateJsonPlugin(
115+
'manifest.json',
116+
merge(
117+
require('./manifest/common.json'),
118+
require(`./manifest/${platform}.json`),
119+
{ version }
120+
),
121+
null,
122+
2
123+
)
111124
]
112125
};
113126

114-
const [mode, platform, benchmark] = env.split(':');
115-
const version = require('./static/manifest.json').version;
116-
// mode controls:
117127
// 1. SAKA_DEBUG: boolean(true | false)
118128
// * true for development builds
119129
// * false for production build

yarn.lock

+10
Original file line numberDiff line numberDiff line change
@@ -4503,6 +4503,10 @@ generate-function@^2.0.0:
45034503
version "2.0.0"
45044504
resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74"
45054505

4506+
generate-json-webpack-plugin@^0.3.1:
4507+
version "0.3.1"
4508+
resolved "https://registry.yarnpkg.com/generate-json-webpack-plugin/-/generate-json-webpack-plugin-0.3.1.tgz#b5ebb383ba552d8be663ce177ed134f480735144"
4509+
45064510
generate-object-property@^1.1.0:
45074511
version "1.2.0"
45084512
resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0"
@@ -10258,6 +10262,12 @@ webpack-hot-middleware@^2.21.2:
1025810262
querystring "^0.2.0"
1025910263
strip-ansi "^3.0.0"
1026010264

10265+
webpack-merge@^4.1.4:
10266+
version "4.1.4"
10267+
resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-4.1.4.tgz#0fde38eabf2d5fd85251c24a5a8c48f8a3f4eb7b"
10268+
dependencies:
10269+
lodash "^4.17.5"
10270+
1026110271
webpack-sources@^1.0.1, webpack-sources@^1.1.0:
1026210272
version "1.1.0"
1026310273
resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.1.0.tgz#a101ebae59d6507354d71d8013950a3a8b7a5a54"

0 commit comments

Comments
 (0)