Make Google Images Great Again

Brings the [View Image] and [Search by Image] buttons back to Google Images search results.

Make Google Images Great Againคืออะไร?

Make Google Images Great Again เป็นส่วนขยายของ Chrome ที่พัฒนาโดย plugins และคุณลักษณะหลักของมันคือ "Brings the [View Image] and [Search by Image] buttons back to Google Images search results."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Make Google Images Great Again

ดาวน์โหลดไฟล์ส่วนขยาย Make Google Images Great Again ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        After you install this extension, you should see the [View Image] and [Search by Image] buttons in the expanded preview of Google Image search results.

Why doesn't Google Image search have these very useful buttons any more? Because Getty Images was worried that those buttons made it too easy to commit copyright infringement, and Google desperately wanted to be able to continue to include Getty Images in its image search results.

If you notice anything weird or it doesn't work, send an email to [email protected] and we'll figure it out.

Note that Google's HTML and javascript on its image search results pages is pretty funky, so this extension definitely has to resort to some methods that are not as robust as I'd like. Take a look at the code and if you have any suggestions on how to be less reliant on their div class names and DOM hierarchy, let me know.

Fork or contribute (pull requests welcome): https://gitlab.com/donnieclapp-OS/make-google-images-great-again

Thanks, and feel free to buy me a beer - paypal.me/donnieclapp

---
Release Notes
---
0.2.0 - 2018-02-21
* Completely rewritten to be more modular, less embarrassing
* Now should work on all international Google domains
---
0.1.2 - 2018-02-19
* Create actual DOM nodes instead of using the "element.innerHTML=" hack
* Only delay button creation if it's the first click since page load
---
0.1.1 - 2018-02-18
Switch icons to PNG for Chrome compatibility
---
0.1. - 2018-02-16
Initial alpha                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Make Google Images Great Again Make Google Images Great Again
ID kjlaimldplcbblpgenlhfjpobmolcblj
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/make-google-images-great/kjlaimldplcbblpgenlhfjpobmolcblj
คำอธิบาย Brings the [View Image] and [Search by Image] buttons back to Google Images search results.
ขนาดไฟล์ 50.96 KB
จำนวนการติดตั้ง 20,000
เวอร์ชันปัจจุบัน 0.2.0
อัปเดตครั้งล่าสุด 2018-02-21
วันที่เผยแพร่ 2018-02-21
คะแนน 3.49/5 รวมทั้งหมด 87 คะแนน
ผู้พัฒนา plugins
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://gitlab.com/donnieclapp-OS/make-google-images-great-again
URL หน้าช่วยเหลือ https://gitlab.com/donnieclapp-OS/make-google-images-great-again/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Make Google Images Great Again",
    "short_name": "MGIGA",
    "author": "Donnie Clapp",
    "version": "0.2.0",
    "description": "Brings the [View Image] and [Search by Image] buttons back to Google Images search results.",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "96": "images\/icon96.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/search?*tbm=isch*"
            ],
            "js": [
                "MGIGA.js"
            ]
        }
    ]
}