|
OLD | NEW |
---|---|
(Empty) | |
1 <html> | |
2 <body> | |
3 <script> | |
4 | |
5 // Enable the page action on this tab. | |
6 chrome.tabs.getSelected(null, function(tab) { | |
7 chrome.pageActions.enableForTab("action", {"tabId":tab.id, "url":tab.url}); | |
8 chrome.test.notifyPass(); | |
9 }); | |
10 | |
11 </script> | |
12 </body> | |
13 </html> | |
OLD | NEW |