netlify-browser-extension

netlify-browser-extension

What is netlify-browser-extension?

netlify-browser-extension is a Chrome extension developed by swyx, and its main feature is "netlify-browser-extension".

Extension Screenshots

screenshot

Download netlify-browser-extension Extension CRX File

Download netlify-browser-extension 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

                        if its an open source netlify site, show a link to source! https://github.com/netlify/netlify-chrome-extension                    

Extension Basic Information

Name netlify-browser-extension netlify-browser-extension
ID dkhfpnphbcckigklfkaemnjdmghhcaoh
Official URL https://chromewebstore.google.com/detail/netlify-browser-extension/dkhfpnphbcckigklfkaemnjdmghhcaoh
Description netlify-browser-extension
File Size 174 KB
Installation Count 277
Current Version 1.3.0
Last Updated 2019-07-05
Publish Date 2019-06-30
Rating 5.00/5 Total 2 Ratings
Developer swyx
Email [email protected]
Payment Type free
Privacy Policy Page URL https://www.eff.org/code/privacy/policy
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "netlify-browser-extension",
    "description": "netlify-browser-extension",
    "version": "1.3.0",
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "short_name": "netlifyext",
    "default_locale": "en_US",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": "logo16-gray.png",
        "default_title": "Not hosted on Netlify :("
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "permissions": [
        "activeTab"
    ]
}