UNPKG

689 BJSONView Raw
1{
2 "name" : "Cypress",
3 "description" : "Adds chrome.* API's for testing with Cypress",
4 "permissions": [
5 "cookies",
6 "tabs",
7 "http://*/*",
8 "https://*/*",
9 "<all_urls>"
10 ],
11 "icons": {
12 "16": "icons/icon_16x16.png",
13 "48": "icons/icon_48x48.png",
14 "128": "icons/icon_128x128.png"
15 },
16 "browser_action": {
17 "default_title": "Cypress",
18 "default_icon": {
19 "19": "icons/icon_19x19.png",
20 "38": "icons/icon_38x38.png"
21 },
22 "default_popup": "popup.html"
23 },
24 "background": {
25 "scripts": [
26 "socket.io.js",
27 "background.js"
28 ]
29 },
30 "chrome_url_overrides": {
31 "newtab": "newtab.html"
32 },
33 "manifest_version": 2
34}