summaryrefslogtreecommitdiff
path: root/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to 'manifest.json')
-rw-r--r--manifest.json21
1 files changed, 21 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json
new file mode 100644
index 0000000..09ccb52
--- /dev/null
+++ b/manifest.json
@@ -0,0 +1,21 @@
+{
+ "manifest_version": 2,
+
+ "name": "STIQEE",
+ "description": "This extension shows a Google Image search result for the current page",
+ "version": "1.0",
+
+ "browser_action": {
+ "default_popup": "index.html"
+ },
+ "permissions": [
+ "activeTab",
+ "https://ajax.googleapis.com/"
+ ],
+ "content_security_policy":"script-src 'self' https://apis.google.com; object-src 'self'",
+ "content_scripts": [ {
+ "css": [ "style.css" ],
+ "matches": ["<all_urls>"],
+ "js": ["script.js"]
+} ]
+} \ No newline at end of file