GImages Direct

Makes your Google Images experience better .. :)

什么是GImages Direct?

GImages Direct是由iAnuj开发的Chrome扩展程序,该扩展的主要功能是“Makes your Google Images experience better .. :)”。

扩展截图

screenshot

下载GImages Direct扩展crx文件

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

扩展使用说明

                        Gives you instant direct access to images.

# Opens direct images in a silent background tab (a time saver for power users)
# Searches for 640x480 and higher images by default
# Right click context menu option to enable/disable GImages Direct.
# + some miscellaneous tweaks

All this to make your Google Images experience better .. :)                    

扩展基本信息

名称 GImages Direct GImages Direct
ID cifcbgbmllbmjpjpcnifgadnkcoimpll
官方URL https://chrome.google.com/webstore/detail/gimages-direct/cifcbgbmllbmjpjpcnifgadnkcoimpll
简介 Makes your Google Images experience better .. :)
文件大小 9.69 KB
安装次数 20
当前版本 0.1.6
更新时间 2012-08-26
上架时间 2012-08-26
评分 4.00/5 共1次评分
开发者 iAnuj
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GImages Direct",
    "description": "Makes your Google Images experience better .. :)",
    "version": "0.1.6",
    "manifest_version": 2,
    "icons": {
        "128": "icon_128.png",
        "48": "icon_48.png"
    },
    "background": {
        "page": "bg.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "script.js"
            ],
            "matches": [
                "*:\/\/*.google.com\/*tbm=isch*"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "google-images-direct.js",
        "style.css"
    ],
    "permissions": [
        "tabs",
        "contextMenus",
        "*:\/\/*.google.com\/*tbm=isch*"
    ]
}