blob: 860a1bbde20e1a206c72c23bb5e6d19d47f57fcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<!--
Copyright (c) 2011 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<html>
<head>
<script>
chrome.browserAction.onClicked.addListener(function() {
chrome.windows.getCurrent(function(win) {
chrome.tabs.getSelected(win.id, actionClicked);
});
});
var version = "0.1";
function actionClicked(tab) {
chrome.debugger.attach({tabId:tab.id}, version, onAttach.bind(null, tab.id));
}
function onAttach(tabId) {
if (chrome.extension.lastError) {
alert(chrome.extension.lastError.message);
return;
}
chrome.windows.create(
{url: "headers.html?" + tabId, type: "popup", width: 800, height: 600});
}
</script>
</head>
</html>
|