Stylo
Allows you to apply and persist custom CSS to any web page.
什麼是Stylo?
Stylo是由Andrew Hook開發的Chrome擴展程式,該擴展的主要功能是“Allows you to apply and persist custom CSS to any web page.”。
擴展截圖
下載Stylo擴展crx文件
下載Stylo擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Allows you to apply and persist custom CSS to any web page.
擴展基本資訊
名稱 | Stylo |
ID | fpoplbeolegkjepcmgakknapmpdpcimb |
官方網址 | https://chromewebstore.google.com/detail/stylo/fpoplbeolegkjepcmgakknapmpdpcimb |
簡介 | Allows you to apply and persist custom CSS to any web page. |
檔案大小 | 15.49 KB |
安裝次數 | 20 |
目前版本 | 2.0 |
更新時間 | 2019-05-10 |
上架時間 | 2019-05-10 |
開發者 | Andrew Hook |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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'" } |