Sniper CSS
Avoid unused CSS styles code in your Web/Apps.
什麼是Sniper CSS?
Sniper CSS是由giustiRo開發的Chrome擴展程式,該擴展的主要功能是“Avoid unused CSS styles code in your Web/Apps.”。
擴展截圖
下載Sniper CSS擴展crx文件
下載Sniper CSS擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Hi Devs! This extension will interact and try to collect all CSS rules of your site, using emulations like Dark and Light themes, going through different media breakpoints, switching User Agents and so on. It will be being improved with time! Try it! Supporting: -Multiple Breakpoints -Dark and Light Themes -Multiple User-Agents -Node's Pseudo-States -Keyframes -Other At-rules like prefers-motion, pointer, etc. -On-load hook related rules. Roadmap: -To add some user inputs preferences and apply them to generated CSS file.
擴展基本資訊
名稱 | Sniper CSS |
ID | kknjnehpgiaeljeilemamjjiopemockp |
官方網址 | https://chromewebstore.google.com/detail/sniper-css/kknjnehpgiaeljeilemamjjiopemockp |
簡介 | Avoid unused CSS styles code in your Web/Apps. |
檔案大小 | 68.29 KB |
安裝次數 | 261 |
目前版本 | 1.1 |
更新時間 | 2023-04-19 |
上架時間 | 2023-04-12 |
評分 | 4.67/5 共 3 次評分 |
開發者 | giustiRo |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Sniper CSS", "version": "1.1", "description": "Avoid unused CSS styles code in your Web\/Apps.", "manifest_version": 3, "permissions": [ "tabs", "activeTab", "scripting", "debugger" ], "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_popup": "index.html", "default_title": "Optimize CSS for this site!", "default_icon": { "16": "assets\/16.png", "24": "assets\/24.png", "32": "assets\/32.png", "64": "assets\/64.png", "100": "assets\/100.png" } }, "host_permissions": [ "http:\/\/*\/", "https:\/\/*\/" ] } |