Google Full Image Opener

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

什么是Google Full Image Opener?

Google Full Image Opener是由Arafat Husayn开发的Chrome扩展程序,该扩展的主要功能是“After clicking an image from search results, use the context menu (right-click) to view the current image.”。

扩展截图

screenshot

下载Google Full Image Opener扩展crx文件

下载Google Full Image Opener扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Google Full Image Opener Google Full Image Opener
ID beojccknfoajfebcpijalgejjpbdipcb
官方URL https://chrome.google.com/webstore/detail/google-full-image-opener/beojccknfoajfebcpijalgejjpbdipcb
简介 After clicking an image from search results, use the context menu (right-click) to view the current image.
文件大小 39.81 KB
安装次数 78
当前版本 2.0
更新时间 2020-08-15
上架时间 2020-02-05
评分 5.00/5 共2次评分
开发者 Arafat Husayn
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://github.com/arafathusayn/vanish-ads/blob/master/PRIVACY.md
支持的语言 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"
    }
}