我正在开发Chrome扩展程序。在extenions页面上,我有一个按钮。当按下此按钮时,我想在当前打开选项卡中导航历史记录中的一步,因此我希望此按钮的行为类似于后退按钮。我在这里看到了一些答案,但似乎没有人能为我工作。 怎么做?
更新
我有以下主要节日。
{
"manifest_version": 2,
"name": "Getting started example",
"description": "This extension shows a Google Image search result for the current page",
"version": "1.0",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"permissions": [
"webNavigation",
"history",
"activeTab",
"https://ajax.googleapis.com/"
]
}
和javascript文件。
document.addEventListener('DOMContentLoaded', function() {
var btn = document.getElementById('btnRestart');
btn.addEventListener("click", function() {
console.log('inside click');
history.back();
console.log('after back');
}, false);
});
答案 0 :(得分:1)
好吧,我还不能留下评论但是我得到了一个扩展,通过使用这里显示的方法https://gist.github.com/greatghoul/8120275当然用window.history.back()改变alert(),如果它没有'首先重新打开你的铬。