Google Docs Show Image Source

Show the original image source for google doc images.

Google Docs Show Image Sourceคืออะไร?

Google Docs Show Image Source เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jeremy Hay และคุณลักษณะหลักของมันคือ "Show the original image source for google doc images."

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

screenshot

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

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

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

                        Adds links to view or copy the original images used in a google doc. This extension is tied pretty closely to the current implementation of google docs. Therefore, this extension is likely to break. If this happens please file an issue on github: https://github.com/jeremypepper/google-doc-image-links-extension/issues and I'll try to fix it asap.                    

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

ชื่อ Google Docs Show Image Source Google Docs Show Image Source
ID gkaedlofdpjmokmeoihckjkinfjcilkf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/google-docs-show-image-so/gkaedlofdpjmokmeoihckjkinfjcilkf
คำอธิบาย Show the original image source for google doc images.
ขนาดไฟล์ 37.28 KB
จำนวนการติดตั้ง 258
เวอร์ชันปัจจุบัน 0.0.21
อัปเดตครั้งล่าสุด 2016-01-28
วันที่เผยแพร่ 2016-01-27
คะแนน 3.40/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Jeremy Hay
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jeremypepper/google-doc-image-links-extension
URL หน้าช่วยเหลือ https://github.com/jeremypepper/google-doc-image-links-extension/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.21",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/*"
            ],
            "css": [
                "styles\/main.css"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}