Valentin Goșu
valentin.gosu@gmail.com
The web!
http://www.microsoft.com/en-us/discover/1994/
Battery
Orientation
Vibration
Alarm
Notification
Camera
SMS
Telephony
Bluetooth
Wifi
Firefox OS | Android | Desktop
{
"version": "0.2.0",
"name": "demo",
"description": "Does stuff",
"launch_path": "/index.html",
"icons": {
"16": "/img/icons/icon16x16.png",
"48": "/img/icons/icon48x48.png",
"60": "/img/icons/icon60x60.png",
"128": "/img/icons/icon128x128.png"
},
"developer": {
"name": "Your name",
"url": "http://example.com"
},
"type": "privileged",
"permissions": {
"systemXHR": {
"description": "Required to load remote content"
}
}
}
What you get is an app:
Content
Manifest
function start() {
navigator.mozTelephony.dial('07XXXXXXXX'); // Call the phone number
setTimeout(stop, 63*1000); // Stop the call in 63 seconds
}
function stop() {
navigator.mozTelephony.calls[0].hangUp(); // Hang up
setTimeout(start, 3*1000); // Call back again in another 3 seconds
}
start();
http://hacks.mozilla.org/
https://developer.mozilla.org/en-US/
valentin.gosu@gmail.com