Google Full Image Opener

After clicking an image from search results, use the context menu (right-click) to view the current image.

Co je Google Full Image Opener?

Google Full Image Opener je rozšíření Chrome vyvinuté Arafat Husayn, a jeho hlavní funkcí je „After clicking an image from search results, use the context menu (right-click) to view the current image.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Google Full Image Opener

Stáhněte si soubory rozšíření Google Full Image Opener ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        It brings the original image link opening back on new Google Images website.

How to use:

After clicking an image from search results, use the context menu (right-click) to view the current image in a new tab.                    

Základní Informace o Rozšíření

Název Google Full Image Opener Google Full Image Opener
ID beojccknfoajfebcpijalgejjpbdipcb
Oficiální URL https://chrome.google.com/webstore/detail/google-full-image-opener/beojccknfoajfebcpijalgejjpbdipcb
Popis After clicking an image from search results, use the context menu (right-click) to view the current image.
Velikost souboru 39.81 KB
Počet instalací 78
Aktuální Verze 2.0
Poslední Aktualizace 2020-08-15
Datum Vydání 2020-02-05
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář Arafat Husayn
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://github.com/arafathusayn/vanish-ads/blob/master/PRIVACY.md
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Full Image Opener",
    "short_name": "google-full-image-opener",
    "description": "After clicking an image from search results, use the context menu (right-click) to view the current image.",
    "version": "2.0",
    "permissions": [
        "contextMenus",
        "storage",
        "tabs",
        "https:\/\/www.google.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "128": "icon128.png"
    }
}