GImages Direct

Makes your Google Images experience better .. :)

GImages Direct là gì?

GImages Direct là một tiện ích mở rộng Chrome được phát triển bởi iAnuj, và tính năng chính của nó là "Makes your Google Images experience better .. :)".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng GImages Direct

Tải xuống các tệp mở rộng GImages Direct dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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 .. :)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GImages Direct GImages Direct
ID cifcbgbmllbmjpjpcnifgadnkcoimpll
URL Chính Thức https://chrome.google.com/webstore/detail/gimages-direct/cifcbgbmllbmjpjpcnifgadnkcoimpll
Mô tả Makes your Google Images experience better .. :)
Kích Thước Tệp 9.69 KB
Số Lần Cài Đặt 20
Phiên Bản Hiện Tại 0.1.6
Cập Nhật Lần Cuối 2012-08-26
Ngày Phát Hành 2012-08-26
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển iAnuj
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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*"
    ]
}