Inline Mantis Images
Include links to images in page as images
Inline Mantis Imagesคืออะไร?
Inline Mantis Images เป็นส่วนขยายของ Chrome ที่พัฒนาโดย [email protected] และคุณลักษณะหลักของมันคือ "Include links to images in page as images"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Inline Mantis Images
ดาวน์โหลดไฟล์ส่วนขยาย Inline Mantis Images ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Inline Mantis Images The Mantis system attaches file as http://*/mantis/file_download.php?file_id=55882&type=bug with a name "xyz.gif" This extension inlines the attached images to see them directly and need not to click on each image. Your URL needs to match "http://*/*" or "" Version History: 1.2: Match all_urls (as our system changed to from http://.../mantis to http://mantis.domain.com/ 1.1: Detect images case insensitive. Here is the JavaScript source: 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 = linkText; myIMG.title = linkText; document.links[i].appendChild(document.createElement("br")); document.links[i].appendChild(myIMG); document.links[i].appendChild(document.createElement("br")); } } }
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | apfandgagcebddggkbfjekglmfdaijcd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/inline-mantis-images/apfandgagcebddggkbfjekglmfdaijcd |
คำอธิบาย | Include links to images in page as images |
ขนาดไฟล์ | 9.5 KB |
จำนวนการติดตั้ง | 248 |
เวอร์ชันปัจจุบัน | 1.3 |
อัปเดตครั้งล่าสุด | 2017-08-29 |
วันที่เผยแพร่ | 2017-08-29 |
คะแนน | 4.88/5 รวมทั้งหมด 8 คะแนน |
ผู้พัฒนา | [email protected] |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Inline Mantis Images", "version": "1.3", "description": "Include links to images in page as images", "icons": { "48": "icon48.png", "128": "icon128.png" }, "author": "Stefan Cordes", "content_scripts": [ { "matches": [ "http:\/\/*\/*", " |