Google Docs Show Image Source

Show the original image source for google doc images.

Τι είναι το Google Docs Show Image Source;

Το Google Docs Show Image Source είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jeremy Hay, και η κύρια λειτουργία του είναι "Show the original image source for google doc images.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Google Docs Show Image Source

Λήψη αρχείων επέκτασης Google Docs Show Image Source σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Google Docs Show Image Source Google Docs Show Image Source
ID gkaedlofdpjmokmeoihckjkinfjcilkf
Επίσημο URL https://chromewebstore.google.com/detail/google-docs-show-image-so/gkaedlofdpjmokmeoihckjkinfjcilkf
Περιγραφή Show the original image source for google doc images.
Μέγεθος Αρχείου 37.28 KB
Αριθμός Εγκαταστάσεων 258
Τρέχουσα Έκδοση 0.0.21
Τελευταία Ενημέρωση 2016-01-28
Ημερομηνία Δημοσίευσης 2016-01-27
Αξιολόγηση 3.40/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής Jeremy Hay
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/jeremypepper/google-doc-image-links-extension
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/jeremypepper/google-doc-image-links-extension/issues
Υποστηριζόμενες Γλώσσες 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
        }
    ]
}