GotoImageUrl

Directly go to image URL from Google Images,Yahoo Images,Ask Images

GotoImageUrlคืออะไร?

GotoImageUrl เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Muthukumaran Navaneethakrishnan และคุณลักษณะหลักของมันคือ "Directly go to image URL from Google Images,Yahoo Images,Ask Images"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GotoImageUrl

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

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

                        This extension is meant for those who use search using Google image , Ask Image & Yahoo Image

Opening link in new tab from the result image will result in a frame based panel , with this extension opening link in new tab will directly open the webpage of the hosted Image.                    

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

ชื่อ GotoImageUrl GotoImageUrl
ID khaobkpabpchpjccdceoakfkohgfepca
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gotoimageurl/khaobkpabpchpjccdceoakfkohgfepca
คำอธิบาย Directly go to image URL from Google Images,Yahoo Images,Ask Images
ขนาดไฟล์ 25.51 KB
จำนวนการติดตั้ง 104
เวอร์ชันปัจจุบัน 2.0
อัปเดตครั้งล่าสุด 2023-01-01
วันที่เผยแพร่ 2013-02-06
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Muthukumaran Navaneethakrishnan
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.facebook.com/Gotoimageurl
URL หน้านโยบายความเป็นส่วนตัว http://deemwar.com/chrome-extn-privacypolicy.htm
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GotoImageUrl",
    "description": "Directly go to image URL from Google Images,Yahoo Images,Ask Images",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "version": "2.0",
    "manifest_version": 3,
    "permissions": [],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/imgres*",
                "https:\/\/*\/imgres*",
                "http:\/\/*\/images*",
                "https:\/\/*\/images*",
                "http:\/\/*\/fr*",
                "https:\/\/*\/fr*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}