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".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου 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"));
		}
	}
}                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Inline Mantis Images Inline Mantis Images
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:\/\/*\/*",
                ""
            ],
            "js": [
                "inlineImages.js"
            ],
            "run_at": "document_end"
        }
    ],
    "homepage_url": "https:\/\/github.com\/rscadrde\/inline-mantis-images"
}