Chromium Code Reviews| Index: ports/tor/manifest.json |
| diff --git a/ports/python-ppapi/manifest.json b/ports/tor/manifest.json |
| similarity index 58% |
| copy from ports/python-ppapi/manifest.json |
| copy to ports/tor/manifest.json |
| index 045a48ee7a4e7dc0763505c5e5241a470b597eb7..57abb7972001c9ec18c5f878cf53865ef727ecca 100644 |
| --- a/ports/python-ppapi/manifest.json |
| +++ b/ports/tor/manifest.json |
| @@ -1,14 +1,30 @@ |
| { |
| - "name": "Python", |
| - "description": "Python interactive shell built with Native Client", |
| - "version": "2.7.7.%(version)s", |
| + "name": "KroTor - np-version", |
| + "short_name": "KroTor", |
| + "description": "Port of Tor to NaCl platfrom", |
| + "version": "0.1.%(version)s", |
| "manifest_version": 2, |
| - "minimum_chrome_version": "30", |
| - "icons": { |
| - "16": "icon_16.png", |
| - "48": "icon_48.png", |
| - "128": "icon_128.png" |
| + "minimum_chrome_version": "36", |
| + "sockets": { |
|
binji
2015/08/24 22:28:01
not needed, see the other ports
deepankar-tyagi
2015/08/25 18:14:44
Done.
|
| + "tcpServer": { |
| + "listen": "127.0.0.1:*" |
| + } |
| }, |
| + "permissions": [ |
| + "storage", |
| + "clipboardRead", |
| + "clipboardWrite", |
| + "unlimitedStorage", |
| + "*://0.0.0.0/*", |
|
binji
2015/08/24 22:28:01
probably unneeded
deepankar-tyagi
2015/08/25 18:14:44
Done.
|
| + "*://localhost/*", |
|
binji
2015/08/24 22:28:01
probably unneeded
deepankar-tyagi
2015/08/25 18:14:44
fixed...
|
| + { |
| + "socket": [ |
| + "tcp-listen:*:*", |
| + "tcp-connect", |
| + "resolve-host" |
| + ] |
| + } |
| + ], |
| "app": { |
| "background": { |
| "scripts": [ |
| @@ -23,25 +39,11 @@ |
| }, |
| { |
| "nacl_arch": "x86-32", |
| - "sub_package_path": "_platform_specific/x86_32/" |
| + "sub_package_path": "_platform_specific/i686/" |
| }, |
| { |
| "nacl_arch": "x86-64", |
| "sub_package_path": "_platform_specific/x86_64/" |
| } |
| - ], |
| - "permissions": [ |
| - "clipboardRead", |
| - "clipboardWrite", |
| - "storage", |
| - "unlimitedStorage", |
| - { "socket": [ |
| - "tcp-listen:*:*", |
| - "tcp-connect", |
| - "resolve-host", |
| - "udp-bind:*:*", |
| - "udp-send-to:*:*" |
| - ] |
| - } |
| ] |
| } |