You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HelloJS module [src/hello.chromeapp.js](./src/hello.chromeapp.js) (also bundled in dist/*) shims the library to support the unique API's of the Chrome App environment (or Chrome Extension).
914
+
915
+
916
+
### Chrome manifest.json prerequisites
917
+
918
+
The `manifest.json` file must have the following permissions...
919
+
```json
920
+
...
921
+
"permissions": [
922
+
"identity",
923
+
"storage",
924
+
"https://*/"],
925
+
...
926
+
```
927
+
909
928
# Thank you
910
929
911
930
HelloJS relies on these fantastic services for it's development and deployment, without which it would still be kicking around in a cave - not evolving very fast.
Copy file name to clipboardExpand all lines: index.html
+19
Original file line number
Diff line number
Diff line change
@@ -945,6 +945,25 @@ <h2>PhoneGap Support</h2>
945
945
946
946
<p>HelloJS can also be run on PhoneGap applications. Checkout the demo <ahref="https://github.com/MrSwitch/hellojs-phonegap-demo">hellojs-phonegap-demo</a></p>
<p>HelloJS module <ahref="./src/hello.chromeapp.js">src/hello.chromeapp.js</a> (also bundled in dist/*) shims the library to support the unique API's of the Chrome App environment (or Chrome Extension).</p>
953
+
954
+
955
+
<h3>Chrome manifest.json prerequisites</h3>
956
+
957
+
<p>The <code>manifest.json</code> file must have the following permissions...</p>
958
+
<pretype="json">
959
+
...
960
+
"permissions": [
961
+
"identity",
962
+
"storage",
963
+
"https://*/"],
964
+
...
965
+
</pre>
966
+
948
967
<h1>Thank you</h1>
949
968
950
969
<p>HelloJS relies on these fantastic services for it's development and deployment, without which it would still be kicking around in a cave - not evolving very fast.</p>
0 commit comments