Imagus

Enlarge thumbnails, and show images/videos from links with a mouse hover.

Was ist Imagus?

Imagus ist eine Chrome-Erweiterung, die von Deathamns entwickelt wurde, und ihr Hauptmerkmal ist "Enlarge thumbnails, and show images/videos from links with a mouse hover.".

Erweiterungsscreenshots

screenshot

Imagus-Erweiterungs-CRX-Datei herunterladen

Laden Sie Imagus-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        There are plenty of settings which can be customized, and reviewing them is currently the best way to learn about what the extension is capable of.

Sections on the options page that may need explanation:

▪ Sieve
An expandable set of site specific and general purpose rules for getting the larger image, media or other content.

▪ Grants
List of user defined sites where the extension should and shouldn't work.                    

Grundlegende Informationen zur Erweiterung

Name Imagus Imagus
ID immpkjjlgappgfkkfieppnmlhakdmaab
Offizielle URL https://chromewebstore.google.com/detail/imagus/immpkjjlgappgfkkfieppnmlhakdmaab
Beschreibung Enlarge thumbnails, and show images/videos from links with a mouse hover.
Dateigröße 149 KB
Installationsanzahl 539,100
Aktuelle Version 0.9.8.74
Letztes Update 2020-04-16
Veröffentlichungsdatum 2020-04-12
Bewertung 4.49/5 Insgesamt 1968 Bewertungen
Entwickler Deathamns
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://tiny.cc/Imagus
Hilfeseite URL https://www.reddit.com/r/imagus/
URL der Datenschutzrichtlinien-Seite https://www.reddit.com/r/imagus/wiki/index
Unterstützte Sprachen en,fr,nl,es,hu,pl,pt-BR,cs,el,ru,uk,zh-CN
manifest.json
{
    "manifest_version": 2,
    "default_locale": "en",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.9.8.74",
    "name": "Imagus",
    "description": "__MSG_APP_DESCRIPTION__",
    "homepage_url": "https:\/\/www.reddit.com\/r\/Imagus",
    "author": "Deathamns",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "*:\/\/*\/*",
        "downloads",
        "history",
        "storage"
    ],
    "incognito": "split",
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "includes\/app.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "includes\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/*\/search*"
            ],
            "include_globs": [
                "https:\/\/www.google.*\/search*"
            ],
            "js": [
                "js\/sp_gim.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/duckduckgo.com\/*"
            ],
            "css": [
                "css\/sp_ddg.css"
            ]
        }
    ]
}