| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "Memory Inspector", | 2 "name": "Memory Inspector", |
| 3 "description": "Memory inspector tool for Android", | 3 "description": "Memory inspector tool for Android", |
| 4 "version": "0.1.0", | 4 "version": "0.1.2", |
| 5 "manifest_version": 2, | 5 "manifest_version": 2, |
| 6 "icons": { | 6 "icons": { |
| 7 "16": "images/icon_16.png", | 7 "16": "images/icon_16.png", |
| 8 "48": "images/icon_48.png", | 8 "48": "images/icon_48.png", |
| 9 "128": "images/icon_128.png" | 9 "128": "images/icon_128.png" |
| 10 }, | 10 }, |
| 11 "app": { | 11 "app": { |
| 12 "background": { | 12 "background": { |
| 13 "scripts": [ | 13 "scripts": [ |
| 14 "background.js" | 14 "background.js" |
| 15 ] | 15 ] |
| 16 } | 16 } |
| 17 }, | 17 }, |
| 18 "permissions": [ | 18 "permissions": [ |
| 19 "storage", | 19 "storage", |
| 20 "system.storage", | 20 "system.storage", |
| 21 "unlimitedStorage", | 21 "unlimitedStorage", |
| 22 "fileSystem", | 22 "fileSystem", |
| 23 "webview", | 23 "webview", |
| 24 { | 24 { |
| 25 "socket": [ | 25 "socket": [ |
| 26 "tcp-listen:*:*", | 26 "tcp-listen:*:*", |
| 27 "tcp-connect", | 27 "tcp-connect", |
| 28 "resolve-host", | 28 "resolve-host", |
| 29 "udp-bind:*:*", | 29 "udp-bind:*:*", |
| 30 "udp-send-to:*:*" | 30 "udp-send-to:*:*" |
| 31 ] | 31 ] |
| 32 }, | 32 }, |
| 33 "http://127.0.0.1:*/*" | 33 "http://127.0.0.1/*" |
| 34 ] | 34 ] |
| 35 } | 35 } |
| OLD | NEW |