Run prettier on manifest.json (#2341)
This commit is contained in:
parent
8ca83c351e
commit
f04bf3f27e
|
@ -23,47 +23,25 @@
|
||||||
"content/notificationBar.js",
|
"content/notificationBar.js",
|
||||||
"content/contextMenuHandler.js"
|
"content/contextMenuHandler.js"
|
||||||
],
|
],
|
||||||
"matches": [
|
"matches": ["http://*/*", "https://*/*", "file:///*"],
|
||||||
"http://*/*",
|
|
||||||
"https://*/*",
|
|
||||||
"file:///*"
|
|
||||||
],
|
|
||||||
"run_at": "document_start"
|
"run_at": "document_start"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"all_frames": false,
|
"all_frames": false,
|
||||||
"js": [
|
"js": ["content/shortcuts.js"],
|
||||||
"content/shortcuts.js"
|
"matches": ["http://*/*", "https://*/*", "file:///*"],
|
||||||
],
|
|
||||||
"matches": [
|
|
||||||
"http://*/*",
|
|
||||||
"https://*/*",
|
|
||||||
"file:///*"
|
|
||||||
],
|
|
||||||
"run_at": "document_start"
|
"run_at": "document_start"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"all_frames": false,
|
"all_frames": false,
|
||||||
"js": [
|
"js": ["content/message_handler.js"],
|
||||||
"content/message_handler.js"
|
"matches": ["http://*/*", "https://*/*", "file:///*"],
|
||||||
],
|
|
||||||
"matches": [
|
|
||||||
"http://*/*",
|
|
||||||
"https://*/*",
|
|
||||||
"file:///*"
|
|
||||||
],
|
|
||||||
"run_at": "document_start"
|
"run_at": "document_start"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"all_frames": true,
|
"all_frames": true,
|
||||||
"css": [
|
"css": ["content/autofill.css"],
|
||||||
"content/autofill.css"
|
"matches": ["http://*/*", "https://*/*", "file:///*"],
|
||||||
],
|
|
||||||
"matches": [
|
|
||||||
"http://*/*",
|
|
||||||
"https://*/*",
|
|
||||||
"file:///*"
|
|
||||||
],
|
|
||||||
"run_at": "document_end"
|
"run_at": "document_end"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -92,9 +70,7 @@
|
||||||
"webRequest",
|
"webRequest",
|
||||||
"webRequestBlocking"
|
"webRequestBlocking"
|
||||||
],
|
],
|
||||||
"optional_permissions": [
|
"optional_permissions": ["nativeMessaging"],
|
||||||
"nativeMessaging"
|
|
||||||
],
|
|
||||||
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
|
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
|
||||||
"commands": {
|
"commands": {
|
||||||
"_execute_browser_action": {
|
"_execute_browser_action": {
|
||||||
|
|
Loading…
Reference in New Issue