Stylo

Allows you to apply and persist custom CSS to any web page.

Wat is Stylo?

Stylo is een Chrome-extensie ontwikkeld door Andrew Hook, en de belangrijkste functie is "Allows you to apply and persist custom CSS to any web page.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Stylo

Download Stylo-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

                        Allows you to apply and persist custom CSS to any web page.                    

Basisinformatie over de Extensie

Naam Stylo Stylo
ID fpoplbeolegkjepcmgakknapmpdpcimb
Officiële URL https://chromewebstore.google.com/detail/stylo/fpoplbeolegkjepcmgakknapmpdpcimb
Beschrijving Allows you to apply and persist custom CSS to any web page.
Bestandsgrootte 15.49 KB
Aantal Installaties 20
Huidige Versie 2.0
Laatst Bijgewerkt 2019-05-10
Publicatiedatum 2019-05-10
Ontwikkelaar Andrew Hook
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Stylo",
    "version": "2.0",
    "description": "Allows you to apply and persist custom CSS to any web page.",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "css": [
                "gmail.css"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/mail.google.com\/*; object-src 'self'"
}