Quellcode durchsuchen

add a keyboard shortcut to open the LessPass pop-up

pull/342/head
Guillaume Vincent vor 8 Jahren
Ursprung
Commit
af87ebcc88
1 geänderte Dateien mit 17 neuen und 2 gelöschten Zeilen
  1. +17
    -2
      extension/manifest.json

+ 17
- 2
extension/manifest.json Datei anzeigen

@@ -9,11 +9,26 @@
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["dist/content.min.js"],
"matches": [
"<all_urls>"
],
"js": [
"dist/content.min.js"
],
"run_at": "document_end"
}
],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+L",
"windows": "Ctrl+Shift+L",
"mac": "Command+Shift+L",
"chromeos": "Ctrl+Shift+L",
"linux": "Ctrl+Shift+L"
}
}
},
"permissions": [
"activeTab",
"storage"


Laden…
Abbrechen
Speichern