But really open image in new tab

But really open image in new tab

But really open image in new tabとは何ですか?

But really open image in new tabはtomによって開発されたChromeの拡張機能で、その主な機能は「But really open image in new tab」です。

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

screenshot

But really open image in new tab拡張機能のCRXファイルをダウンロード

But really open image in new tab拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        You know when you right click an image there is the option to "Open image in new tab"? You know how it doesn't work if the image is covered by another hidden element? Wouldn't it be nice if you could just tell it to ignore those elements and just open the damn image hidden underneath. Well good news, that's what this extension does!

Bonus features!
* If there are lots of images stacked on top of each other, it will open all of the images.
* It will even check for images using the CSS background-image property.
* Not only that but it will work on SVGs too!

Note: It doesn't work on the Chrome Web Store pages because they restrict extensions on here.                    

拡張機能の基本情報

名前 But really open image in new tab But really open image in new tab
ID magmbbfoiobnjaflbhcjkmknfjcaeddk
公式URL https://chromewebstore.google.com/detail/but-really-open-image-in/magmbbfoiobnjaflbhcjkmknfjcaeddk
説明 But really open image in new tab
ファイルサイズ 7.44 KB
インストール数 368
現在のバージョン 0.2
最終更新日 2024-02-04
公開日 2023-08-07
評価 5.00/5 合計 3 レビュー
開発者 tom
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.tomchurchill.co.uk/
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "But really open image in new tab",
    "description": "But really open image in new tab",
    "version": "0.2",
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "icons": {
        "128": "icons\/icon.png"
    },
    "background": {
        "service_worker": "js\/main.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "js\/content.js"
            ],
            "css": []
        }
    ]
}