Google Docs Show Image Source

Show the original image source for google doc images.

What is Google Docs Show Image Source?

Google Docs Show Image Source is a Chrome extension developed by Jeremy Hay, and its main feature is "Show the original image source for google doc images.".

Extension Screenshots

screenshot

Download Google Docs Show Image Source Extension CRX File

Download Google Docs Show Image Source extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Google Docs Show Image Source Google Docs Show Image Source
ID gkaedlofdpjmokmeoihckjkinfjcilkf
Official URL https://chromewebstore.google.com/detail/google-docs-show-image-so/gkaedlofdpjmokmeoihckjkinfjcilkf
Description Show the original image source for google doc images.
File Size 37.28 KB
Installation Count 258
Current Version 0.0.21
Last Updated 2016-01-28
Publish Date 2016-01-27
Rating 3.40/5 Total 5 Ratings
Developer Jeremy Hay
Payment Type free
Extension Website https://github.com/jeremypepper/google-doc-image-links-extension
Help Page URL https://github.com/jeremypepper/google-doc-image-links-extension/issues
Supported Languages 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
        }
    ]
}