Highlight Paragraph

Change background color of paragragh using this chrome extension.

What is Highlight Paragraph?

Highlight Paragraph is a Chrome extension developed by https://binkod.in, and its main feature is "Change background color of paragragh using this chrome extension.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Highlight Paragraph Extension CRX File

Download Highlight Paragraph 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

                        This chrome extension will highlight each paragraph used on web page. Paragraphs will be highlighted in different color. Clicking again will remove the highlighted color.                    

Extension Basic Information

Name Highlight Paragraph Highlight Paragraph
ID mihpkdogcegeddhpcppdohogpknfpilg
Official URL https://chromewebstore.google.com/detail/highlight-paragraph/mihpkdogcegeddhpcppdohogpknfpilg
Description Change background color of paragragh using this chrome extension.
File Size 16.2 KB
Installation Count 24
Current Version 1.0
Last Updated 2020-09-10
Publish Date 2020-09-10
Developer https://binkod.in
Email [email protected]
Payment Type free
Privacy Policy Page URL https://www.binkod.in/p/privacy-policy.html
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Highlight Paragraph",
    "description": "Change background color of paragragh using this chrome extension.",
    "author": "Ravi Bhushan",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Paragraph Background Color Change"
    }
}