OLD | NEW |
1 <html> | 1 <html> |
2 <script> | 2 <script> |
3 // The Page Action ID. | 3 // The Page Action ID. |
4 var pageActionId = "RssPageAction"; | 4 var pageActionId = "RssPageAction"; |
5 | 5 |
6 // The window this Page Action is associated with. | 6 // The window this Page Action is associated with. |
7 var windowId = -1; | 7 var windowId = -1; |
8 | 8 |
9 // The TabId this Page Action is associated with. | 9 // The TabId this Page Action is associated with. |
10 var tabId = -1; | 10 var tabId = -1; |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 var url = "http://www.google.com/reader/view/feed/" + feedUrl; | 49 var url = "http://www.google.com/reader/view/feed/" + feedUrl; |
50 chrome.tabs.create({url: "subscribe.html?" + feedUrl, | 50 chrome.tabs.create({url: "subscribe.html?" + feedUrl, |
51 windowId: windowId}); | 51 windowId: windowId}); |
52 } | 52 } |
53 } | 53 } |
54 }); | 54 }); |
55 }); | 55 }); |
56 }); | 56 }); |
57 </script> | 57 </script> |
58 </html> | 58 </html> |
OLD | NEW |