-
-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathmanifest.json
More file actions
42 lines (42 loc) · 1.08 KB
/
manifest.json
File metadata and controls
42 lines (42 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "Visual Python for Colab",
"description": "GUI-based Python code generator for Google Colab as an extension",
"version": "3.0.2",
"manifest_version": 3,
"icons": {
"48": "icon.png",
"128": "icon128.png"
},
"action": {
"default_title": "Visual Python for Colab\n\nGUI-based Python code generator.\nClick icon to enable.",
"default_icon": {
"48": "icon.png",
"128": "icon128.png"
}
},
"permissions": [
"activeTab",
"scripting",
"tabs"
],
"content_scripts": [
{
"matches": ["https://colab.research.google.com/*"],
"js": ["content.js"],
"all_frames": true
}
],
"web_accessible_resources": [{
"resources": [
"icon.png",
"icon128.png",
"icon-disable.png",
"inject.js",
"visualpython/*"
],
"matches": ["<all_urls>"]
}],
"background": {
"service_worker": "background.js"
}
}