mirror of
https://github.com/golang/go
synced 2024-11-11 18:21:40 -07:00
gophertool: make work with latest Chrome extension security restrictions
No JavaScript in HTML anymore. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/6619066
This commit is contained in:
parent
236e79cab3
commit
9e811683f1
@ -6,19 +6,7 @@
|
|||||||
-->
|
-->
|
||||||
<head>
|
<head>
|
||||||
<script src="gopher.js"></script>
|
<script src="gopher.js"></script>
|
||||||
<script>
|
<script src="background.js"></script>
|
||||||
|
|
||||||
chrome.omnibox.onInputEntered.addListener(function(t) {
|
|
||||||
var url = urlForInput(t);
|
|
||||||
if (url) {
|
|
||||||
chrome.tabs.getSelected(null, function(tab) {
|
|
||||||
if (!tab) return;
|
|
||||||
chrome.tabs.update(tab.id, { "url": url, "selected": true });
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
</script>
|
|
||||||
</head>
|
</head>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
9
misc/chrome/gophertool/background.js
Normal file
9
misc/chrome/gophertool/background.js
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
chrome.omnibox.onInputEntered.addListener(function(t) {
|
||||||
|
var url = urlForInput(t);
|
||||||
|
if (url) {
|
||||||
|
chrome.tabs.getSelected(null, function(tab) {
|
||||||
|
if (!tab) return;
|
||||||
|
chrome.tabs.update(tab.id, { "url": url, "selected": true });
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
@ -6,49 +6,14 @@
|
|||||||
-->
|
-->
|
||||||
<head>
|
<head>
|
||||||
<script src="gopher.js"></script>
|
<script src="gopher.js"></script>
|
||||||
<script>
|
<script src="popup.js"></script>
|
||||||
|
|
||||||
function focusinput() {
|
|
||||||
document.getElementById("inputbox").focus();
|
|
||||||
}
|
|
||||||
|
|
||||||
function navigate() {
|
|
||||||
var box = document.getElementById("inputbox");
|
|
||||||
box.focus();
|
|
||||||
|
|
||||||
var t = box.value;
|
|
||||||
if (t == "") {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
var success = function(url) {
|
|
||||||
console.log("matched " + t + " to: " + url)
|
|
||||||
box.value = "";
|
|
||||||
openURL(url);
|
|
||||||
return false; // cancel form submission
|
|
||||||
};
|
|
||||||
|
|
||||||
var url = urlForInput(t);
|
|
||||||
if (url) {
|
|
||||||
return success(url);
|
|
||||||
}
|
|
||||||
|
|
||||||
console.log("no match for text: " + t)
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
function openURL(url) {
|
|
||||||
chrome.tabs.create({ "url": url })
|
|
||||||
}
|
|
||||||
|
|
||||||
</script>
|
|
||||||
</head>
|
</head>
|
||||||
<body onload="focusinput()" style='margin: 0.5em; font-family: sans;'>
|
<body style='margin: 0.5em; font-family: sans;'>
|
||||||
<small><a href="#" onclick="openURL('http://code.google.com/p/go/issues/list')">issue</a>,
|
<small><a href="#" onclick="openURL('http://code.google.com/p/go/issues/list')">issue</a>,
|
||||||
<a href="#" onclick="openURL('http://codereview.appspot.com/')">codereview</a>,
|
<a href="#" onclick="openURL('http://codereview.appspot.com/')">codereview</a>,
|
||||||
<a href="#" onclick="openURL('http://code.google.com/p/go/source/list')">commit</a>, or
|
<a href="#" onclick="openURL('http://code.google.com/p/go/source/list')">commit</a>, or
|
||||||
<a href="#" onclick="openURL('http://golang.org/pkg/')">pkg</a> id/name:</small>
|
<a href="#" onclick="openURL('http://golang.org/pkg/')">pkg</a> id/name:</small>
|
||||||
<form style='margin: 0' onsubmit="return navigate();"><nobr><input id="inputbox" size=10 tabindex=1 /><input type="submit" value="go" /></nobr></form>
|
<form style='margin: 0' id='navform'><nobr><input id="inputbox" size=10 tabindex=1 /><input type="submit" value="go" /></nobr></form>
|
||||||
<small>Also: <a href="#" onclick="openURL('http://build.golang.org/')">buildbots</small>
|
<small>Also: <a href="#" id='buildbotslink'>buildbots</small>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
38
misc/chrome/gophertool/popup.js
Normal file
38
misc/chrome/gophertool/popup.js
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
function openURL(url) {
|
||||||
|
chrome.tabs.create({ "url": url })
|
||||||
|
}
|
||||||
|
|
||||||
|
window.addEventListener("load", function () {
|
||||||
|
console.log("hacking gopher pop-up loaded.");
|
||||||
|
document.getElementById("inputbox").focus();
|
||||||
|
});
|
||||||
|
|
||||||
|
window.addEventListener("submit", function () {
|
||||||
|
console.log("submitting form");
|
||||||
|
var box = document.getElementById("inputbox");
|
||||||
|
box.focus();
|
||||||
|
|
||||||
|
var t = box.value;
|
||||||
|
if (t == "") {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
var success = function(url) {
|
||||||
|
console.log("matched " + t + " to: " + url)
|
||||||
|
box.value = "";
|
||||||
|
openURL(url);
|
||||||
|
return false; // cancel form submission
|
||||||
|
};
|
||||||
|
|
||||||
|
var url = urlForInput(t);
|
||||||
|
if (url) {
|
||||||
|
return success(url);
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log("no match for text: " + t)
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
|
||||||
|
window.addEventListener("click", function () {
|
||||||
|
openURL("http://build.golang.org/");
|
||||||
|
});
|
Loading…
Reference in New Issue
Block a user