Straight to Full-Size for Google Images™

Changes the behaviour of Google Images™ so that clicking on an image thumbnail takes you directly to the full-size image.

Straight to Full-Size for Google Images™とは何ですか?

Straight to Full-Size for Google Images™はdsmithによって開発されたChromeの拡張機能で、その主な機能は「Changes the behaviour of Google Images™ so that clicking on an image thumbnail takes you directly to the full-size image.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Straight to Full-Size for Google Images™拡張機能のCRXファイルをダウンロード

Straight to Full-Size for Google Images™拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        6 NOV 2013 - VERSION 2.0 RELEASED!
Google updated their search results page, which broke this extension some time ago. This release fixes this issue.

------

Google Images forces you through an intermediate preview step when trying to view an image from their images search result page.

Sometimes, I'd prefer to just go directly to the URL of the fullsize image. This extension detects when your browser has arrived at a Google Images preview page and provides a simpler way to get at the full-size image.

CHANGELOG:

Version 2.0 (6 November 2013)
- Updated to work with Google's new search results page format.

Version 1.6 (2 October 2012)
- Updated the manifest file to the new format (was preventing the extension from being installed)
- Rewrote a lot of the code to change the way the tab handling is done
- Added "View original website" and "View Google Images preview" links to the full-size image display page

Version 1.5 (15 September 2011)
- Fixed a major issue introduced when Google changed the structure of their URLs which broke the previous version.
- Removed the additional links added below the image in the previous version.

Version 1.4 (28 Mar 2011)
- Added browser toolbar button to toggle the extension on and off
- Can now use the browser's back/forward buttons to switch between Google Images preview and the full-size image.
- Added useful options below the full-size image
- Slight name change to comply with the Chrome Web Store's branding guidelines

Version 1.3 (23 Aug 2010)
- bugfix to support images.google.com domain (thanks Nos402)

Version 1.2 (3 Aug 2010)
- Added new icons

Version 1.1 (3 Aug 2010)
- Detection update

Version 1.0 (2 Aug 2010)
- Initial release                    

拡張機能の基本情報

名前 Straight to Full-Size for Google Images™ Straight to Full-Size for Google Images™
ID ghhmhdkbiodiengmhbbpjkcjodingned
公式URL https://chromewebstore.google.com/detail/straight-to-full-size-for/ghhmhdkbiodiengmhbbpjkcjodingned
説明 Changes the behaviour of Google Images™ so that clicking on an image thumbnail takes you directly to the full-size image.
ファイルサイズ 41.16 KB
インストール数 10,313
現在のバージョン 2.0
最終更新日 2013-11-06
公開日 2013-11-06
評価 3.92/5 合計 149 レビュー
開発者 dsmith
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Straight to Full-Size for Google Images\u2122",
    "version": "2.0",
    "manifest_version": 2,
    "description": "Changes the behaviour of Google Images\u2122 so that clicking on an image thumbnail takes you directly to the full-size image.",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_icon": "icons\/32.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "js\/content.js"
            ],
            "matches": [
                "http:\/\/*\/search?*",
                "http:\/\/*\/imgres?*",
                "https:\/\/*\/search?*",
                "https:\/\/*\/imgres?*"
            ]
        }
    ],
    "permissions": [
        "http:\/\/*\/*"
    ]
}