Google Docs Image Viewer

Free your embedded Google Docs images!

Google Docs Image Viewer क्या है?

Google Docs Image Viewer Gino द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Free your embedded Google Docs images!"।

एक्सटेंशन स्क्रीनशॉट्स

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Google Docs Image Viewer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
}