summaryrefslogtreecommitdiff
path: root/manifest.json
diff options
context:
space:
mode:
authorDominic DiTaranto <domdit@gmail.com>2024-08-23 23:32:26 -0400
committerDominic DiTaranto <domdit@gmail.com>2024-08-23 23:32:26 -0400
commit26ee0a64973a16584f8d51686ab357acfd526ee9 (patch)
tree38401cbf5e8d6fd05e879782b64189d9368edc1d /manifest.json
init commitHEADmaster
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