CloudApp Image Loader for Gmail

CloudApp image autoloader. Use this addon to render CloudApp images inside your gmail.

Vad är CloudApp Image Loader for Gmail?

CloudApp Image Loader for Gmail är en Chrome-tillägg utvecklad av Peter Smith, och dess huvudfunktion är "CloudApp image autoloader. Use this addon to render CloudApp images inside your gmail.".

Tilläggsskärmbilder

screenshot

Ladda ner CloudApp Image Loader for Gmail-förlängningens CRX-fil

Ladda ner CloudApp Image Loader for Gmail-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

                        Allows you to view Cloudapp images inside your gmail.                    

Grundläggande Information om Tillägg

Namn CloudApp Image Loader for Gmail CloudApp Image Loader for Gmail
ID oeledhhhcgaeaaijjhgagekpppjabpkp
Officiell webbadress https://chromewebstore.google.com/detail/cloudapp-image-loader-for/oeledhhhcgaeaaijjhgagekpppjabpkp
Beskrivning CloudApp image autoloader. Use this addon to render CloudApp images inside your gmail.
Filstorlek 66.51 KB
Antal Installationer 77
Aktuell Version 0.0.5
Senast Uppdaterad 2016-01-25
Publiceringsdatum 2016-01-24
Betyg 3.67/5 Totalt 3 Betyg
Utvecklare Peter Smith
E-post [email protected]
Betalningssätt free
Stödda Språk en,ru,uk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_info_name__",
    "version": "0.0.5",
    "description": "__MSG_info_description__",
    "author": "Georgiy Velchev",
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/libs\/jq.js",
            "js\/libs\/require.js",
            "js\/background\/bg.js"
        ]
    },
    "icons": {
        "16": "images\/16x16.png",
        "48": "images\/48x48.png",
        "128": "images\/128x128.png"
    },
    "browser_action": {
        "default_icon": "images\/16x16.png",
        "default_title": "CloudImg loader"
    },
    "permissions": [
        "storage",
        "tabs",
        "contextMenus",
        "notifications",
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "include_globs": [
                "*:\/\/mail.google.*\/*"
            ],
            "js": [
                "js\/libs\/require.js",
                "js\/libs\/require-cs.js",
                "js\/main.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "js\/libs\/domReady.js",
        "js\/content\/app.js",
        "js\/content\/gmail.js",
        "js\/content\/observer.js",
        "js\/content\/simulate.js",
        "js\/utils\/helper.js",
        "images\/16x16.png"
    ]
}