Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Cutting Edge!

Cutting Edge!

まどすた #1 ~ //build/ 2016 振り返り
2016-05-21(土)
https://roommetro.doorkeeper.jp/events/44062

-----
デモサイト(当日のものとは少し違います):
http://madosta-20160521-demo.azurewebsites.net/
https://github.com/mayuki/Madosta-20160521-Demo

Mayuki Sawatari

May 21, 2016
Tweet

More Decks by Mayuki Sawatari

Other Decks in Programming

Transcript

  1. ! !

  2. !

  3. #

  4. !

  5. browserAction contextMenus cookies extension i18n pageAction runtime storage tabs webNavigation

    webRequest windows https://github.com/MicrosoftEdge/MicrosoftEdge-Documentation/tree/master/extensions/supported-APIs
  6. Web Notifications Fetch API Web Payments API WebRTC v1.0+VP8,H.264/AVC VP9

    Opus WebM Container ECMAScript 6,7,2016 Web Speech API URL API Canvas 2D Path 2D WOFF 2.0 Drag and Drop Directories High Resolution Time 2 Beacon Windows Hello (FIDO)
  7. Web Notifications Fetch API Web Payments API WebRTC v1.0+VP8,H.264/AVC VP9

    Opus WebM Container ECMAScript 6,7,2016 Web Speech API URL API Canvas 2D Path 2D WOFF 2.0 Drag and Drop Directories High Resolution Time 2 Beacon Windows Hello (FIDO)
  8. // WebIDL partial interface Navigator { boolean sendBeacon(USVString url, optional

    BodyInit? data = null); }; // JavaScript document.querySelector('#button-01').addEventListener('click', (e) => { navigator.sendBeacon('/Home/Collector', JSON.stringify({ time: performance.now(), event: 'clicked' })); });