summaryrefslogtreecommitdiff
path: root/manifest.json
blob: 09ccb5242cf684b65045776f10e603a112f4d893 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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"]
} ]
}