Imagus

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

Vad är Imagus?

Imagus är en Chrome-tillägg utvecklad av Deathamns, och dess huvudfunktion är "Enlarge thumbnails, and show images/videos from links with a mouse hover.".

Tilläggsskärmbilder

screenshot

Ladda ner Imagus-förlängningens CRX-fil

Ladda ner Imagus-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Imagus Imagus
ID immpkjjlgappgfkkfieppnmlhakdmaab
Officiell webbadress https://chromewebstore.google.com/detail/imagus/immpkjjlgappgfkkfieppnmlhakdmaab
Beskrivning Enlarge thumbnails, and show images/videos from links with a mouse hover.
Filstorlek 149 KB
Antal Installationer 539,100
Aktuell Version 0.9.8.74
Senast Uppdaterad 2020-04-16
Publiceringsdatum 2020-04-12
Betyg 4.49/5 Totalt 1968 Betyg
Utvecklare Deathamns
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://tiny.cc/Imagus
Hjälpsida URL https://www.reddit.com/r/imagus/
URL till Sekretesspolicy Sidan https://www.reddit.com/r/imagus/wiki/index
Stödda Språk 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"
            ]
        }
    ]
}