我正在嘗試將我的腳浸入創建鍍鉻擴展的池中。我試圖從我認爲簡單的事情開始,但事實證明,我不知道我在哪裏可以閱讀有關這方面的信息。Chrome瀏覽器擴展程序:如何通過點擊html彈出框中的按鈕來打開新標籤頁中的指定鏈接?
無論如何,目前我的目標是有一個擴展名爲Chrome的擴展模塊,它可以執行以下操作: 單擊擴展圖標 - > HTML彈出文件打開,顯示單個按鈕 - >當您單擊此按鈕時,一個新的chrome選項卡並將其更改爲您的活動選項卡。
從我的搜索中,我發現我可能不得不使用後臺腳本,以便我不違反關於Manifest版本2或類別的政策,我嘗試了它,但它並不適用於我。如果這不是問題,我真的不想創造一個全新的腳本。
這裏是我的manifest.json文件,接着是我的popup.html文件。
{
"manifest_version": 2,
"name": "strong text",
"author": "authorname",
"description": "desctext",
"version": "1.4",
"permissions": [
"tabs"
],
"icons": { "16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png" },
"browser_action": {
"default_popup": "popup.html"
}
}
<!doctype html>
<html>
<head>
<title>Hovertext</title>
<script src="popup.js"></script>
</head>
<body>
<div id="header">
<h1>Header</h1>
</div>
<div id="divider">
<p><button type="button" id="buttonA">Button Text</button>
\t <script>
\t var button1 = document.getElementById("buttonA");
\t button1.addEventListener("click", function() {
chrome.tabs.create({url: "http://www.google.com/"});
\t });
\t </script>
</div>
<div id="footer">
footer stuff here
</div>
</body>
<style>
body {
background-image: url("https://s-media-cache-ak0.pinimg.com/736x/51/3e/4f/513e4f5274ec48f29b894b0b8409658f.jpg");
}
#header {
background-color:rgb(96, 222, 72);
text-align:center;
padding:1px;
}
#footer {
background-color:rgb(96, 222, 72);
clear:both;
text-align:center;
padding:1px;
}
#divider {
text-align:center;
}
#buttonA {
color:white;
background-color:rgb(0, 152, 255);
border-width:3px;
border-color:white;
}
#buttonA:hover {
color:rgb(0, 152, 255);
background-color:white;
border-width:3px
border-color:rgb(0, 152, 255);
}
</style>
</html>
我是新來的這種類型的東西,堆棧溢出一般,所以如果我不澄清一些正確只是讓我知道,謝謝你的幫助提前!
檢查這個問題http://stackoverflow.com/questions/3188384/google-chrome-extensions-open-new-tab-when-clicking-a-toolbar-icon – Rio
鏈接非常感謝@Rio,雖然我不是很喜歡s我將如何更改片段'chrome.browserAction.onClicked.addListener(function(activeTab) { var newURL =「http://www.google.com/」; chrome.tabs.create({url:newURL}); });'在popup.html中使用我的按鈕。我開始認爲我可能需要一個後臺腳本來監聽按鈕推送的背景。 – Cyclicz