iT邦幫忙

1

Chrome Extension 筆記(13)被整合進通知中心的 Notification

  • 分享至 

  • xImage
  •  


manifest.json

{
   "manifest_version": 2,
   "name": "ironman6",
   "version": "1.0",
   "browser_action": {  
      "default_popup": "index.html"  
   },
   "permissions": [
      "notifications"
   ]
}

index.html

        <title>ironman6</title>
        <style>body {width: 500px;}</style> 
    
    
    	<button id="showNotifier">Show Notification</button>
        <script src="app.js"></script>
    

app.js

document.querySelector("#showNotifier").addEventListener("click", showNotifier);

function showNotifier(){
	var Notifier = webkitNotifications.createNotification(
		'chrome://extension-icon/',
		'Ironman6',
		'Day 13'
	);
	Notifier.show();
}

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言