Google Full Image Opener

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

What is Google Full Image Opener?

Google Full Image Opener is a Chrome extension developed by Arafat Husayn, and its main feature is "After clicking an image from search results, use the context menu (right-click) to view the current image.".

Extension Screenshots

screenshot

Download Google Full Image Opener Extension CRX File

Download Google Full Image Opener extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Google Full Image Opener Google Full Image Opener
ID beojccknfoajfebcpijalgejjpbdipcb
Official URL https://chrome.google.com/webstore/detail/google-full-image-opener/beojccknfoajfebcpijalgejjpbdipcb
Description After clicking an image from search results, use the context menu (right-click) to view the current image.
File Size 39.81 KB
Installation Count 78
Current Version 2.0
Last Updated 2020-08-15
Publish Date 2020-02-05
Rating 5.00/5 Total 2 Ratings
Developer Arafat Husayn
Email [email protected]
Payment Type free
Privacy Policy Page URL https://github.com/arafathusayn/vanish-ads/blob/master/PRIVACY.md
Supported Languages 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"
    }
}