我正在尝试制作一个 Chrome 扩展程序来获取当前页面的 URL,并使用它来创建和显示一个 QR 码,该 QR 码使用下面的 Google API 链接到它。
这是我的 popup.js
chrome.tabs.getSelected(null,function(tab) {
var tablink = tab.url;
});
document.write('https://chart.googleapis.com/chart?chs=100x100&cht=qr&chl=' + tablink);
这是我的 manifest.json
{
"name": "Qrit",
"version": "1.0",
"manifest_version": 2,
"description": "Instantly creates a QR Code that links to the current page.",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"permissions": [
"tabs"
]
}
问题是弹出窗口只是空白。我对 Javascript 和 Json 几乎一无所知。