repl.it download

Adds a download button to repl.it

What is repl.it download?

repl.it download is a Chrome extension developed by Amish Shah, and its main feature is "Adds a download button to repl.it".

Extension Screenshots

screenshot

Download repl.it download Extension CRX File

Download repl.it download extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                                            

Extension Basic Information

Name repl.it download repl.it download
ID pgmcojeijjhacgkkjaakdafmloncpema
Official URL https://chromewebstore.google.com/detail/replit-download/pgmcojeijjhacgkkjaakdafmloncpema
Description Adds a download button to repl.it
File Size 110 KB
Installation Count 4,046
Current Version 1.0.1
Last Updated 2016-06-12
Publish Date 2016-06-12
Rating 1.50/5 Total 2 Ratings
Developer Amish Shah
Payment Type free
Supported Languages en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "repl.it download",
    "description": "Adds a download button to repl.it",
    "version": "1.0.1",
    "manifest_version": 2,
    "permissions": [
        "downloads"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/repl.it\/*"
            ],
            "js": [
                "jquery-3.0.0.min.js",
                "inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "main.js",
        "res\/arrow.png"
    ],
    "browser_action": {
        "default_title": "REPL.it Download",
        "default_icon": "res\/icon.png"
    },
    "icons": {
        "16": "res\/icon16.png",
        "32": "res\/icon32.png",
        "48": "res\/icon48.png",
        "128": "res\/icon128.png"
    }
}