Index: chrome/test/data/extensions/api_test/page_action_popup/manifest.json |
diff --git a/chrome/test/data/extensions/api_test/page_action_popup/manifest.json b/chrome/test/data/extensions/api_test/page_action_popup/manifest.json |
new file mode 100755 |
index 0000000000000000000000000000000000000000..ecc550ccbda22ae2067a4100506f6f97a6cef463 |
--- /dev/null |
+++ b/chrome/test/data/extensions/api_test/page_action_popup/manifest.json |
@@ -0,0 +1,13 @@ |
+{ |
+ "name": "A page action with a popup that does nothing.", |
+ "version": "1.0", |
+ "background_page": "background.html", |
+ "permissions": [ |
+ "tabs", "http://*/*" |
+ ], |
+ "page_action": { |
+ "default_title": "Popup hello world", |
+ "default_icon": "icon.png", |
+ "popup": "popup.html" |
+ } |
+} |