Webpage Banner

Adds a banner to a specific URL

What is Webpage Banner?

Webpage Banner is a Chrome extension developed by jivanbros10, and its main feature is "Adds a banner to a specific URL".

Extension Screenshots

screenshot
screenshot

Download Webpage Banner Extension CRX File

Download Webpage Banner 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

                        Add a banner to a webpage in order to make it stand out. Primary use case was for developers who work in multiple environments.                    

Extension Basic Information

Name Webpage Banner Webpage Banner
ID idlgnfimfalagocpjknbdjnacaiajmfm
Official URL https://chromewebstore.google.com/detail/webpage-banner/idlgnfimfalagocpjknbdjnacaiajmfm
Description Adds a banner to a specific URL
File Size 13.34 KB
Installation Count 131
Current Version 1.0
Last Updated 2021-03-04
Publish Date 2021-02-16
Developer jivanbros10
Email [email protected]
Payment Type free
Extension Website https://github.com/kjivan/webpage-banner
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Webpage Banner",
    "version": "1.0",
    "description": "Adds a banner to a specific URL",
    "permissions": [
        "declarativeContent",
        "storage",
        "webNavigation",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/favicon-16x16.png",
            "32": "images\/favicon-32x32.png",
            "48": "images\/favicon-48x48.png",
            "128": "images\/favicon-128x128.png"
        }
    },
    "icons": {
        "16": "images\/favicon-16x16.png",
        "32": "images\/favicon-32x32.png",
        "48": "images\/favicon-48x48.png",
        "128": "images\/favicon-128x128.png"
    },
    "manifest_version": 2
}