Google Docs Show Image Source

Show the original image source for google doc images.

Was ist Google Docs Show Image Source?

Google Docs Show Image Source ist eine Chrome-Erweiterung, die von Jeremy Hay entwickelt wurde, und ihr Hauptmerkmal ist "Show the original image source for google doc images.".

Erweiterungsscreenshots

screenshot

Google Docs Show Image Source-Erweiterungs-CRX-Datei herunterladen

Laden Sie Google Docs Show Image Source-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Google Docs Show Image Source Google Docs Show Image Source
ID gkaedlofdpjmokmeoihckjkinfjcilkf
Offizielle URL https://chromewebstore.google.com/detail/google-docs-show-image-so/gkaedlofdpjmokmeoihckjkinfjcilkf
Beschreibung Show the original image source for google doc images.
Dateigröße 37.28 KB
Installationsanzahl 258
Aktuelle Version 0.0.21
Letztes Update 2016-01-28
Veröffentlichungsdatum 2016-01-27
Bewertung 3.40/5 Insgesamt 5 Bewertungen
Entwickler Jeremy Hay
Zahlungsart free
Erweiterungswebsite https://github.com/jeremypepper/google-doc-image-links-extension
Hilfeseite URL https://github.com/jeremypepper/google-doc-image-links-extension/issues
Unterstützte Sprachen 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
        }
    ]
}