Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(236)

Side by Side Diff: ports/tor/manifest.json

Issue 1311703003: Added Tor Base URL: https://chromium.googlesource.com/external/naclports.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ports/tor/krotor_48.png ('k') | ports/tor/nacl.patch » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "name": "Python", 2 "name": "KroTor(beta) - Access internet via TOR",
3 "description": "Python interactive shell built with Native Client", 3 "short_name": "KroTor - beta",
4 "version": "2.7.7.%(version)s", 4 "description": "",
5 "version": "0.1.2.%(version)s",
5 "manifest_version": 2, 6 "manifest_version": 2,
6 "minimum_chrome_version": "30", 7 "minimum_chrome_version": "36",
7 "icons": { 8 "icons": {
8 "16": "icon_16.png", 9 "16": "krotor_16.png",
9 "48": "icon_48.png", 10 "48": "krotor_48.png",
10 "128": "icon_128.png" 11 "128": "krotor_128.png"
11 }, 12 },
13 "offline_enabled": false,
14 "permissions": [
15 "storage",
16 "clipboardWrite",
17 "unlimitedStorage",
18 {
19 "socket": [
20 "tcp-listen:*:*",
21 "tcp-connect",
22 "resolve-host"
23 ]
24 }
25 ],
12 "app": { 26 "app": {
13 "background": { 27 "background": {
14 "scripts": [ 28 "scripts": [
15 "background.js" 29 "background.js"
16 ] 30 ]
17 } 31 }
18 }, 32 },
19 "platforms": [ 33 "platforms": [
20 { 34 {
21 "nacl_arch": "arm", 35 "nacl_arch": "arm",
22 "sub_package_path": "_platform_specific/arm/" 36 "sub_package_path": "_platform_specific/arm/"
23 }, 37 },
24 { 38 {
25 "nacl_arch": "x86-32", 39 "nacl_arch": "x86-32",
26 "sub_package_path": "_platform_specific/i686/" 40 "sub_package_path": "_platform_specific/i686/"
27 }, 41 },
28 { 42 {
29 "nacl_arch": "x86-64", 43 "nacl_arch": "x86-64",
30 "sub_package_path": "_platform_specific/x86_64/" 44 "sub_package_path": "_platform_specific/x86_64/"
31 } 45 }
32 ],
33 "permissions": [
34 "clipboardRead",
35 "clipboardWrite",
36 "storage",
37 "unlimitedStorage",
38 { "socket": [
39 "tcp-listen:*:*",
40 "tcp-connect",
41 "resolve-host",
42 "udp-bind:*:*",
43 "udp-send-to:*:*"
44 ]
45 }
46 ] 46 ]
47 } 47 }
OLDNEW
« no previous file with comments | « ports/tor/krotor_48.png ('k') | ports/tor/nacl.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698