2014-10-09 102 views

回答

2

谷歌做了一個星球大戰新選項卡更換,它允許您查看默認的新標籤頁。它使用的網址是chrome-search://local-ntp/local-ntp.html。例如:

options.html:

<input type="checkbox"> Use default new tab page 

options.js:

var checkbox = document.querySelector("input[type=checkbox]") 
checkbox.addEventListener("click", function() { 
chrome.storage.sync.set({ defaultnewtab: checkbox.checked }) 
}) 

newtab.js:

chrome.storage.sync.get("defaultnewtab", function(storage) { 
if(storage.defaultnewtab) { 
    chrome.tabs.update({ url: "chrome-search://local-ntp/local-ntp.html" }) 
} }) 
+0

這並不總是可行的。擴展程序應該顯示最後設置的新標籤頁,而不是Chrome的默認標籤頁。 – 2016-05-12 12:30:26

相關問題