Highlight Paragraph

Change background color of paragragh using this chrome extension.

Wat is Highlight Paragraph?

Highlight Paragraph is een Chrome-extensie ontwikkeld door https://binkod.in, en de belangrijkste functie is "Change background color of paragragh using this chrome extension.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Highlight Paragraph

Download Highlight Paragraph-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Highlight Paragraph Highlight Paragraph
ID mihpkdogcegeddhpcppdohogpknfpilg
Officiële URL https://chromewebstore.google.com/detail/highlight-paragraph/mihpkdogcegeddhpcppdohogpknfpilg
Beschrijving Change background color of paragragh using this chrome extension.
Bestandsgrootte 16.2 KB
Aantal Installaties 24
Huidige Versie 1.0
Laatst Bijgewerkt 2020-09-10
Publicatiedatum 2020-09-10
Ontwikkelaar https://binkod.in
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://www.binkod.in/p/privacy-policy.html
Ondersteunde Talen 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"
    }
}