ReactJS Chrome Extension

Using ReactJS to build a Chrome Extension

What is ReactJS Chrome Extension?

ReactJS Chrome Extension is a Chrome extension developed by ameliesakks, and its main feature is "Using ReactJS to build a Chrome Extension".

Extension Screenshots

screenshot

Download ReactJS Chrome Extension Extension CRX File

Download ReactJS Chrome 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

                        A ReactJS-Chrome extension. Testing a new way of developing Chrome Extensions.                    

Extension Basic Information

Name ReactJS Chrome Extension ReactJS Chrome Extension
ID bocdmcjhmkjnhfahfmbhedleelidfamm
Official URL https://chromewebstore.google.com/detail/reactjs-chrome-extension/bocdmcjhmkjnhfahfmbhedleelidfamm
Description Using ReactJS to build a Chrome Extension
File Size 145 KB
Installation Count 184
Current Version 0.1.0
Last Updated 2021-02-18
Publish Date 2021-02-17
Developer ameliesakks
Email [email protected]
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ReactJS Chrome Extension",
    "description": "Using ReactJS to build a Chrome Extension",
    "version": "0.1.0",
    "manifest_version": 2,
    "icons": {
        "16": ".\/obj-16x16.png",
        "32": ".\/obj-32x32.png",
        "48": ".\/obj-48x48.png",
        "128": ".\/obj-128x128.png"
    },
    "background": {
        "scripts": [
            ".\/background.js"
        ]
    },
    "options_page": ".\/options.html",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "*:\/\/www.google.com\/*"
    ]
}