Inline Mantis Images
截图:
简介:
在页面中包含指向图像的链接作为图像
内联螳螂图像
Mantis 系统将文件附加为
http://*/mantis/file_download.php?file_id=55882&type=bug
名称为“xyz.gif”
此扩展内嵌附加图像以直接查看它们,而无需单击每个图像。
您的网址需要匹配
“http://*/*”
或者
“<所有_网址>”
版本历史:
1.2:匹配all_urls(因为我们的系统从http://.../mantis更改为http://mantis.domain.com/
1.1:检测图像不区分大小写。
这是 JavaScript 源代码:
for ( var i = 0; i < document.links.length; ++i) {
myHref = document.links[i].href;
linkText = document.links[i].firstChild.data;
if (linkText != null) {
linkText = linkText.toLowerCase();
if (linkText.indexOf(".gif") >= 0 || linkText.indexOf(".png") >= 0
|| linkText.indexOf(".jpeg") >= 0
|| linkText.indexOf(".jpg") >= 0
|| linkText.indexOf(".bmp") >= 0)
{
var myIMG = document.createElement("img");
myIMG.src = document.links[i].href;
myIMG.alt = 链接文本;
myIMG.title = 链接文本;
document.links[i].appendChild(document.createElement("br"));
document.links[i].appendChild(myIMG);
document.links[i].appendChild(document.createElement("br"));
}
}
}