-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
41 lines (40 loc) · 1.21 KB
/
manifest.json
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
{
"name": "WordPress Plugin Update Report",
"version": "0.7.3",
"description": "Quickly provide a list of available WordPress plugin updates when viewing the plugin listings. Copy to html, csv or composer.json format",
"homepage_url": "https://linchpin.tools",
"permissions": [ "tabs", "activeTab", "declarativeContent", "contextMenus", "nativeMessaging", "storage", "http://*/*", "https://*/*" ],
"content_scripts": [
{
"all_frames": true,
"matches": [
"*://*/wp-admin/plugins.php*",
"*://*/wp-admin/network/plugins.php*",
"*://*/wp-admin/update-core.php*"
],
"js": ["content.js"],
"run_at": "document_end"
}
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/report32.png",
"32": "images/report32.png",
"48": "images/report48.png",
"128": "images/report128.png"
},
"default_title": "WordPress Plugin Update Report"
},
"icons": {
"16": "images/report32.png",
"32": "images/report32.png",
"48": "images/report48.png",
"128": "images/report128.png"
},
"manifest_version": 2
}