-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
51 lines (51 loc) · 1.21 KB
/
manifest.json
File metadata and controls
51 lines (51 loc) · 1.21 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
43
44
45
46
47
48
49
50
51
{
"manifest_version": 2,
"name": "Abdal Reverse Type",
"version": "4.3",
"author": "Ebrahim Shafiei (EbraSha)",
"homepage_url": "https://github.com/ebrasha/abdal-reverse-type",
"description": "Convert text between English and Persian characters with right-click menu, custom keyboard shortcuts, and multiple keyboard layout support",
"browser_specific_settings": {
"gecko": {
"id": "abdal-reverse-type@Prof.Shafiei"
}
},
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"96": "icons/icon96.png",
"128": "icons/icon128.png"
},
"permissions": [
"activeTab",
"storage",
"<all_urls>",
"contextMenus",
"tabs"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"run_at": "document_start",
"all_frames": true,
"match_about_blank": true
}
],
"background": {
"scripts": ["background.js"],
"persistent": true
},
"browser_action": {
"default_icon": {
"48": "icons/icon48.png",
"96": "icons/icon96.png"
},
"default_title": "Abdal Reverse Type"
},
"options_ui": {
"page": "options.html",
"browser_style": true
}
}