aboutsummaryrefslogtreecommitdiff
path: root/src/js/chrome/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to 'src/js/chrome/manifest.json')
-rw-r--r--src/js/chrome/manifest.json30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/js/chrome/manifest.json b/src/js/chrome/manifest.json
new file mode 100644
index 0000000..9202276
--- /dev/null
+++ b/src/js/chrome/manifest.json
@@ -0,0 +1,30 @@
+{
+ "manifest_version": 2,
+
+ "name": "Five UI",
+ "version": "0.2",
+ "description": "UI Constraint Checker",
+
+ "icons": { "16": "data/images/fiveui-icon-16.png",
+ "48": "data/images/fiveui-icon-48.png",
+ "128": "data/images/fiveui-icon-128.png"
+ },
+
+ "background": {
+ "persistent": true,
+ "page": "data/background.html"
+ },
+
+ "options_page": "data/options.html",
+
+ "browser_action": {
+ "default_icon": "data/images/fiveui-icon-disabled.png",
+ "default_title": "Five UI"
+ },
+ "permissions": [
+ "tabs", "http://*/*", "https://*/*", "history"
+ ],
+
+ // We have to relax the content security policy to allow rules to be evaluated:
+ "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
+}