Crossrider 最近推出了open a new tab with HTML from resources 的功能。但是,此类页面无法使用 HTML 中嵌入的链接和脚本标签直接访问其他资源文件。
虽然它是早期版本,但 HTML 页面的功能之一是 crossriderMain 功能,该功能会在页面准备好后运行。在这个早期版本中,该函数支持以下 Crossrider API:appAPI.db.async、appAPI.message 和 appAPI.request。
因此,即使在此早期版本中没有直接方法将资源 CSS 和脚本文件添加到资源 HTML 页面,您也可以解决方法该问题通过将资源加载到异步本地数据库并使用标准 jQuery 将其应用到 HTML 页面。例如:
background.js:
appAPI.ready(function() {
// load resource file 'style.css' in to local database
appAPI.db.async.set('style-css', appAPI.resources.get('style.css'));
// load resource file 'script.js' in to local database
appAPI.db.async.set('script-js', appAPI.resources.get('script.js'));
// open resource html
appAPI.openURL({
resourcePath: "troubleShooter.html",
where: "tab",
focus: true
});
});
troubleShooter.html:
<!DOCTYPE html>
<html>
<head>
<!-- This meta tag is relevant only for IE -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<script type="text/javascript">
function crossriderMain($) {
appAPI.db.async.get('style-css', function(rules) {
$('<style type="text/css">').text(rules).appendTo('head');
});
appAPI.db.async.get('script-js', function(code) {
// runs in the context of the extension
$.globalEval(code.replace('CONTEXT','EXTN'));
// Alternatively, run in context of page DOM
$('<script type="text/javascript">')
.html(code.replace('CONTEXT','PAGE DOM')).appendTo('head');
});
}
</script>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>
style.css:
h1 {color:red;}
script.js
console.log('CONTEXT:: script.js running');
免责声明:我是 Crossrider 的员工