Stylo
Allows you to apply and persist custom CSS to any web page.
What is Stylo?
Stylo is a Chrome extension developed by Andrew Hook, and its main feature is "Allows you to apply and persist custom CSS to any web page.".
Extension Screenshots
Download Stylo Extension CRX File
Download Stylo 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
Allows you to apply and persist custom CSS to any web page.
Extension Basic Information
Name | Stylo |
ID | fpoplbeolegkjepcmgakknapmpdpcimb |
Official URL | https://chromewebstore.google.com/detail/stylo/fpoplbeolegkjepcmgakknapmpdpcimb |
Description | Allows you to apply and persist custom CSS to any web page. |
File Size | 15.49 KB |
Installation Count | 20 |
Current Version | 2.0 |
Last Updated | 2019-05-10 |
Publish Date | 2019-05-10 |
Developer | Andrew Hook |
[email protected] | |
Payment Type | free |
Supported Languages | 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'" } |