Google Docs Show Image Source

Show the original image source for google doc images.

Vad är Google Docs Show Image Source?

Google Docs Show Image Source är en Chrome-tillägg utvecklad av Jeremy Hay, och dess huvudfunktion är "Show the original image source for google doc images.".

Tilläggsskärmbilder

screenshot

Ladda ner Google Docs Show Image Source-förlängningens CRX-fil

Ladda ner Google Docs Show Image Source-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Google Docs Show Image Source Google Docs Show Image Source
ID gkaedlofdpjmokmeoihckjkinfjcilkf
Officiell webbadress https://chromewebstore.google.com/detail/google-docs-show-image-so/gkaedlofdpjmokmeoihckjkinfjcilkf
Beskrivning Show the original image source for google doc images.
Filstorlek 37.28 KB
Antal Installationer 258
Aktuell Version 0.0.21
Senast Uppdaterad 2016-01-28
Publiceringsdatum 2016-01-27
Betyg 3.40/5 Totalt 5 Betyg
Utvecklare Jeremy Hay
Betalningssätt free
Tilläggswebbplats https://github.com/jeremypepper/google-doc-image-links-extension
Hjälpsida URL https://github.com/jeremypepper/google-doc-image-links-extension/issues
Stödda Språk 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
        }
    ]
}