Stylo
Allows you to apply and persist custom CSS to any web page.
Hvad er Stylo?
Stylo er en Chrome-udvidelse udviklet af Andrew Hook, og dens hovedfunktion er "Allows you to apply and persist custom CSS to any web page.".
Udvidelsesskærmbilleder
Download Stylo-udvidelses-CRX-fil
Download Stylo-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Allows you to apply and persist custom CSS to any web page.
Grundlæggende oplysninger om udvidelsen
Navn | Stylo |
ID | fpoplbeolegkjepcmgakknapmpdpcimb |
Officiel URL | https://chromewebstore.google.com/detail/stylo/fpoplbeolegkjepcmgakknapmpdpcimb |
Beskrivelse | Allows you to apply and persist custom CSS to any web page. |
Filstørrelse | 15.49 KB |
Antal Installationer | 20 |
Nuværende Version | 2.0 |
Senest Opdateret | 2019-05-10 |
Udgivelsesdato | 2019-05-10 |
Udvikler | Andrew Hook |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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'" } |