Inline Mantis Images
Include links to images in page as images
Inline Mantis Images क्या है?
Inline Mantis Images [email protected] द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Include links to images in page as images"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Inline Mantis Images एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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:\/\/*\/*",
" | |