Imagus

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

Imagus란 무엇입니까?

Imagus은(는) Deathamns에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enlarge thumbnails, and show images/videos from links with a mouse hover."입니다.

확장 프로그램 스크린샷

screenshot

Imagus 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Imagus Imagus
ID immpkjjlgappgfkkfieppnmlhakdmaab
공식 URL https://chromewebstore.google.com/detail/imagus/immpkjjlgappgfkkfieppnmlhakdmaab
설명 Enlarge thumbnails, and show images/videos from links with a mouse hover.
파일 크기 149 KB
설치 횟수 539,100
현재 버전 0.9.8.74
최근 업데이트 2020-04-16
출시 날짜 2020-04-12
평점 4.49/5 총 1968 개의 평점
개발자 Deathamns
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://tiny.cc/Imagus
도움말 페이지 URL https://www.reddit.com/r/imagus/
개인정보 보호 정책 페이지 URL https://www.reddit.com/r/imagus/wiki/index
지원되는 언어 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"
            ]
        }
    ]
}