Initial commit of HamShield library and example sketches. Probably not fully functional.
This commit is contained in:
8
examples/ChromeHAMShield/background.js
Executable file
8
examples/ChromeHAMShield/background.js
Executable file
@@ -0,0 +1,8 @@
|
||||
chrome.app.runtime.onLaunched.addListener(function() {
|
||||
chrome.app.window.create("window.html", {
|
||||
"bounds": {
|
||||
"width": 400,
|
||||
"height": 500
|
||||
}
|
||||
});
|
||||
});
|
||||
10
examples/ChromeHAMShield/manifest.json
Executable file
10
examples/ChromeHAMShield/manifest.json
Executable file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"name": "",
|
||||
"description": "HAMShield",
|
||||
"version": "1.0.0",
|
||||
"app": {
|
||||
"background": {
|
||||
"scripts": ["background.js"]
|
||||
}
|
||||
}
|
||||
}
|
||||
1
examples/ChromeHAMShield/project.ps
Executable file
1
examples/ChromeHAMShield/project.ps
Executable file
@@ -0,0 +1 @@
|
||||
chromeApp
|
||||
1
examples/ChromeHAMShield/styles.css
Executable file
1
examples/ChromeHAMShield/styles.css
Executable file
@@ -0,0 +1 @@
|
||||
body{}
|
||||
13
examples/ChromeHAMShield/window.html
Executable file
13
examples/ChromeHAMShield/window.html
Executable file
@@ -0,0 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
</head>
|
||||
<body>
|
||||
<div>
|
||||
Power
|
||||
</div>
|
||||
<div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user