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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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
        }
    ]
}