作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个 Chrome 扩展。我想在创建新选项卡时重定向到自定义 html 页面。
这是 process.js 文件。
chrome.tabs.onCreated.addListener(function() {
alert("hello");
window.open('https://ucsc.cmb.ac.lk/', '_self', false);
});
这是manifest.json 文件。
{
"manifest_version": 2,
"name": "xxx",
"version": "1.0",
"description": "xxx",
"icons": {
"128": "icon128.png",
"48": "icon48.png",
"16": "icon16.png"
},
"browser_action": {
"default_icon": "icon16.png",
"default_popup": "popup.html"
},
"background": {
"scripts": ["process.js"],
"presistent": true
},
"permissions": [
"storage",
"notifications",
"contextMenus",
"tabs",
"activeTab",
"http://*/",
"https://*/"
]
}
警报正在运行。但它没有加载页面。
最佳答案
您可能正在寻找Override Pages .
将此代码添加到您的 list 文件中:
"chrome_url_overrides" : {
"pageToOverride": "myPage.html"
},
关于javascript - 我想在 Chrome 中创建新选项卡时重定向到自定义 html 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58761676/
我是一名优秀的程序员,十分优秀!