Skip to content

Commit bb5cb8c

Browse files
authored
Prepare v2 for release (#55)
1 parent e97f373 commit bb5cb8c

File tree

6 files changed

+30
-9
lines changed

6 files changed

+30
-9
lines changed

v2/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1+
manifest.json
12
background/out
23
node_modules
4+
crx.zip

v2/Makefile

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
ENV=--prod
2-
FAKE=dev
2+
FAKE=dev prod
33

4-
all: background ui
4+
prod: background ui
5+
jq 'del(.key)' manifest_base.json > manifest.json
56

67
dev: ENV=
7-
dev: all
8+
dev: prod
9+
cp manifest_base.json manifest.json
10+
11+
crx.zip: prod
12+
rm -f crx.zip
13+
zip -r crx.zip background/out ui/dist icons manifest.json
814

915
background: FORCE node_modules/@types/chrome
1016
cd background && tsc --project src/tsconfig.json
@@ -21,4 +27,4 @@ ui: FORCE ui/node_modules
2127
FORCE:
2228

2329
clean:
24-
rm -rf ui/node_modules node_modules background/out ui/dist
30+
rm -rf ui/node_modules node_modules background/out ui/dist manifest.json crx.zip

v2/icons/128.png

3.32 KB
Loading

v2/icons/16.png

541 Bytes
Loading

v2/icons/48.png

1.86 KB
Loading
+18-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,27 @@
11
{
2-
"name": "Tamper Chrome 2",
3-
"description" : "Tamper Chrome 2",
4-
"version": "0.1.0",
52
"manifest_version": 2,
6-
"permissions": ["debugger", "<all_urls>", "activeTab", "debugger"],
3+
"name": "Tamper Chrome",
4+
"version": "2.0.0",
5+
"description" : "Tamper Chrome is a Chrome extension that allows you to edit HTTP requests as they happen.",
6+
"icons": {"16": "icons/16.png","48": "icons/48.png","128": "icons/128.png"},
7+
"browser_action": {
8+
"default_title": "Tamper Chrome",
9+
"default_icon": {"16": "icons/16.png","48": "icons/48.png","128": "icons/128.png"}
10+
},
711
"background": {
812
"page": "background/background.html",
913
"persistent": true
1014
},
11-
"browser_action": {"default_title": "TC2"},
15+
"commands": {
16+
"_execute_browser_action": {
17+
"suggested_key": {
18+
"default": "Alt+Shift+C"
19+
},
20+
"description": "Open tamper chrome for the current tab"
21+
}
22+
},
23+
"minimum_chrome_version": "87",
24+
"permissions": ["debugger", "<all_urls>", "activeTab", "debugger"],
1225
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
1326
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgXuoF2D68sbW53PO/5gK6ar52c/oANFtGFuxE1SdKKLDdF4RbDZefwK48Bc4Zc2pW81qmHC+H+gMHLh+oiH0TP2l0THjQRRf57f5Wuhk42Tdp0qlyS2qQMky5WOVZU8vQdhnRCktMPLyNWx2PeiUXkQDQ3XkcY0cttPhRAlZgx+qNfguHkmsC7HNZ/Y00TY5uUrlGl9MDt2d6fj1uUyV7pimLMA4cnTIjkf+tWhFSXTEbINdpr/YqnU/lq2I9VonBTjoNkt9hAE3y/tDgmkMh3edqqQh96m7Ker+8ZFnaQr6PrPT0vzfQdwWCnl9ItiyJNuFlCkoOzYlrp1+OIzNaQIDAQAB"
1427
}

0 commit comments

Comments
 (0)