summaryrefslogtreecommitdiffstats
path: root/chrome/test/data/extensions/platform_apps/url_handlers/handlers/simple/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/test/data/extensions/platform_apps/url_handlers/handlers/simple/manifest.json')
-rw-r--r--chrome/test/data/extensions/platform_apps/url_handlers/handlers/simple/manifest.json19
1 files changed, 19 insertions, 0 deletions
diff --git a/chrome/test/data/extensions/platform_apps/url_handlers/handlers/simple/manifest.json b/chrome/test/data/extensions/platform_apps/url_handlers/handlers/simple/manifest.json
new file mode 100644
index 0000000..60c6ee8
--- /dev/null
+++ b/chrome/test/data/extensions/platform_apps/url_handlers/handlers/simple/manifest.json
@@ -0,0 +1,19 @@
+{
+ "name": "Handler: simple",
+ "version": "1",
+ "app": {
+ "background": {
+ "scripts": ["test.js"]
+ }
+ },
+
+ "url_handlers": {
+ "my_doc_url": {
+ "title": "Open my doc",
+ "matches": [
+ "http://localhost:*/extensions/platform_apps/url_handlers/*/target.html",
+ "http://127.0.0.1:*/extensions/platform_apps/url_handlers/*/target.html"
+ ]
+ }
+ }
+}