GotoImageUrl

Directly go to image URL from Google Images,Yahoo Images,Ask Images

什么是GotoImageUrl?

GotoImageUrl是由Muthukumaran Navaneethakrishnan开发的Chrome扩展程序,该扩展的主要功能是“Directly go to image URL from Google Images,Yahoo Images,Ask Images”。

扩展截图

screenshot
screenshot

下载GotoImageUrl扩展crx文件

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

扩展使用说明

                        This extension is meant for those who use search using Google image , Ask Image & Yahoo Image

Opening link in new tab from the result image will result in a frame based panel , with this extension opening link in new tab will directly open the webpage of the hosted Image.                    

扩展基本信息

名称 GotoImageUrl GotoImageUrl
ID khaobkpabpchpjccdceoakfkohgfepca
官方URL https://chromewebstore.google.com/detail/gotoimageurl/khaobkpabpchpjccdceoakfkohgfepca
简介 Directly go to image URL from Google Images,Yahoo Images,Ask Images
文件大小 25.51 KB
安装次数 104
当前版本 2.0
更新时间 2023-01-01
上架时间 2013-02-06
评分 5.00/5 共4次评分
开发者 Muthukumaran Navaneethakrishnan
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.facebook.com/Gotoimageurl
隐私政策页面URL http://deemwar.com/chrome-extn-privacypolicy.htm
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GotoImageUrl",
    "description": "Directly go to image URL from Google Images,Yahoo Images,Ask Images",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "version": "2.0",
    "manifest_version": 3,
    "permissions": [],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/imgres*",
                "https:\/\/*\/imgres*",
                "http:\/\/*\/images*",
                "https:\/\/*\/images*",
                "http:\/\/*\/fr*",
                "https:\/\/*\/fr*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}