本文介绍了尝试getUrl图像时Firefox WebExtension中的安全错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
尝试移植一些Chrome扩展程序并获得此安全错误:" http://example.com "可能无法加载或链接到"moz-extension://04d69802-c26f-47ae-86f2-d54650455e5a/blocks/indicators/__icon/indicators__icon-tweet.png"
Trying to port some Chrome extension and getting this Security Error: Content at "http://example.com" may not load or linkto "moz-extension://04d69802-c26f-47ae-86f2-d54650455e5a/blocks/indicators/__icon/indicators__icon-tweet.png"
(function () {
'use strict';
var PATHS = {
TWITTER: chrome.extension.getURL("blocks/indicators/__icon/indicators__icon-tweet.png")
};
})();
在 manifest.json 中,此路径位于 web_accessible_resources 中.
推荐答案
要摆脱此错误,应提供完整路径.
To get rid of this error, full path should be provided.
"web_accessible_resources": [
"blocks/indicators/__icon/indicators__icon-tweet.png"
]
否"blocks/indicators/*
.
这篇关于尝试getUrl图像时Firefox WebExtension中的安全错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!