Google Docs Image Viewer

Free your embedded Google Docs images!

Google Docs Image Viewerคืออะไร?

Google Docs Image Viewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Gino และคุณลักษณะหลักของมันคือ "Free your embedded Google Docs images!"

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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Docs Image Viewer

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

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

                        Hover over any Google Docs embedded image to see the full size source in a new tab.

Does this sound like you?
• I need the original image I embedded a while ago. It's right here, why can't I have it!?
• My designer embedded a huge flow in this doc but I left my microscope at home and can't read anything. (I'm a designer fyi)
• Janice in Accounting made an awesome diagram and I want to steal it for my own glory. Can i haz? 

If you're frustrated with embedded images locked away in Google Docs then this chrome extension is for you! Simply hover over any image and you'll see an icon in the bottom right corner that links to the full size source image in a new tab.                    

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

ชื่อ Google Docs Image Viewer Google Docs Image Viewer
ID kdlnfjjcbeaehfkoefcgfmnmdocogbja
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/google-docs-image-viewer/kdlnfjjcbeaehfkoefcgfmnmdocogbja
คำอธิบาย Free your embedded Google Docs images!
ขนาดไฟล์ 6.52 KB
จำนวนการติดตั้ง 1,066
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2019-04-09
วันที่เผยแพร่ 2019-04-09
คะแนน 3.00/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา Gino
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/gvalente/google-docs-image-viewer
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Docs Image Viewer",
    "description": "Free your embedded Google Docs images!",
    "author": "Gino Valente",
    "permissions": [],
    "browser_action": {
        "default_title": "Google Docs Image Viewer",
        "default_icon": {
            "16": "images\/default_icon16.png",
            "32": "images\/default_icon32.png",
            "48": "images\/default_icon48.png",
            "128": "images\/default_icon128.png"
        }
    },
    "icons": {
        "16": "images\/default_icon16.png",
        "32": "images\/default_icon32.png",
        "48": "images\/default_icon48.png",
        "128": "images\/default_icon128.png"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "css": [
                "style.css"
            ],
            "js": [
                "contentscript.js"
            ],
            "matches": [
                "https:\/\/docs.google.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2,
    "version": "1.1"
}