Stylo
Allows you to apply and persist custom CSS to any web page.
Was ist Stylo?
Stylo ist eine Chrome-Erweiterung, die von Andrew Hook entwickelt wurde, und ihr Hauptmerkmal ist "Allows you to apply and persist custom CSS to any web page.".
Erweiterungsscreenshots
Stylo-Erweiterungs-CRX-Datei herunterladen
Laden Sie Stylo-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Allows you to apply and persist custom CSS to any web page. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | fpoplbeolegkjepcmgakknapmpdpcimb |
| Offizielle URL | https://chromewebstore.google.com/detail/stylo/fpoplbeolegkjepcmgakknapmpdpcimb |
| Beschreibung | Allows you to apply and persist custom CSS to any web page. |
| Dateigröße | 15.49 KB |
| Installationsanzahl | 20 |
| Aktuelle Version | 2.0 |
| Letztes Update | 2019-05-10 |
| Veröffentlichungsdatum | 2019-05-10 |
| Entwickler | Andrew Hook |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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'"
} | |