Started working on chrome plugin

This commit is contained in:
Mattias Lasersköld 2020-03-14 11:29:55 +01:00
parent 0f26e38b84
commit cebc627cae
4 changed files with 40 additions and 0 deletions

17
software/chrome/README.md Normal file
View File

@ -0,0 +1,17 @@
Chrome extension for the mechanical keyboard
============================================
[Getting started information about plugins] (https://developer.chrome.com/extensions/getstarted)
[serial port](https://developer.chrome.com/apps/app_serial)
[serial api](https://developer.chrome.com/apps/serial)
## Testing
Goto
```url
chrome://extensions
```
Set developer mode and load unpacked.

View File

View File

@ -0,0 +1,11 @@
{
"name": "Lasersköld & Philsson Methanical keyboard setup",
"version": "1.0",
"description": "A extension for customizing the layout of your methanical keyboard",
"manifest_version": 2,
"browser_action": {
"default_title": "test",
"default_popup": "popup.html"
},
"permissions": [ "serial" ]
}

View File

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
</style>
</head>
<body>
<p>Hej! Det här är ett test.</p>
<button id="test">Test</button>
</body>
</html>