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
官方網址 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"
    }
}