forked from rpeng220/kaleidoscope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.js
28 lines (25 loc) · 1.07 KB
/
popup.js
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
document.addEventListener('DOMContentLoaded', function () {
document.getElementById('edit_profile').onclick = function() {
chrome.runtime.openOptionsPage();
};
document.getElementById('autofill').onclick = function() {
chrome.tabs.query({active: true, currentWindow: true},function(tabs) {
chrome.tabs.executeScript(tabs[0].id, {file: 'content.js'}, function() {
chrome.tabs.sendMessage(tabs[0].id, {message: "hello"});
});
});
}
var y = document.getElementById("support_page");
y.addEventListener("click", openIndex);
});
function openIndex() {
chrome.tabs.create({active: true, url: "https://chrome.google.com/webstore/detail/kumquat/mkjkimankkfhefaabddppkhbobffaadp"});
}
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-188515357-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = 'https://ssl.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();