Google Docs Show Image Source

Show the original image source for google doc images.

Wat is Google Docs Show Image Source?

Google Docs Show Image Source is een Chrome-extensie ontwikkeld door Jeremy Hay, en de belangrijkste functie is "Show the original image source for google doc images.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Google Docs Show Image Source

Download Google Docs Show Image Source-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Google Docs Show Image Source Google Docs Show Image Source
ID gkaedlofdpjmokmeoihckjkinfjcilkf
Officiële URL https://chromewebstore.google.com/detail/google-docs-show-image-so/gkaedlofdpjmokmeoihckjkinfjcilkf
Beschrijving Show the original image source for google doc images.
Bestandsgrootte 37.28 KB
Aantal Installaties 258
Huidige Versie 0.0.21
Laatst Bijgewerkt 2016-01-28
Publicatiedatum 2016-01-27
Beoordeling 3.40/5 Totaal 5 Beoordelingen
Ontwikkelaar Jeremy Hay
Betalingswijze free
Extensiewebsite https://github.com/jeremypepper/google-doc-image-links-extension
Help Pagina-URL https://github.com/jeremypepper/google-doc-image-links-extension/issues
Ondersteunde Talen 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
        }
    ]
}