-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
35 lines (35 loc) · 1.05 KB
/
manifest.json
File metadata and controls
35 lines (35 loc) · 1.05 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
{
"manifest_version": 3,
"name": "SmartType - Automatic Text Expander",
"version": "1.0",
"author": "dev.alexanderperez@protonmail.com",
"description": "With this tool, you will have the power to automate your workflows, save time and enhance your productivity by eliminating repetitive typing tasks.",
"icons": {
"32": "/public/browser_action/icon32.png",
"48": "/public/browser_action/icon48.png",
"128": "/public/browser_action/icon128.png"
},
"action": {
"default_title":"SmartType | Automatic Text Expander",
"default_icon": "/public/browser_action/icon48.png"
},
"permissions": [
"tabs",
"activeTab",
"storage",
"scripting",
"background"
],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": ["./src/extension/content.js", "./src/extension/expand.js"]
}
],
"background": {
"service_worker": "./src/extension/background.js"
}
}