Custom CSS by Denis
Minimal and secure way to add custom CSS per-domain
什麼是Custom CSS by Denis?
Custom CSS by Denis是由https://sokolov.cc開發的Chrome擴展程式,該擴展的主要功能是“Minimal and secure way to add custom CSS per-domain”。
擴展截圖
下載Custom CSS by Denis擴展crx文件
下載Custom CSS by Denis擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Add custom CSS styles on websites.
The extension does not require permissions to access all data on all websites all the time. Once you start editing CSS on a page, you get a permission prompt specific to that domain. Later, if the CSS for a domain is not used, the permission will be dropped.
There is no UI clutter of any kind. The entire extension consists of a big editable area for CSS code for the current domain. 擴展基本資訊
| 名稱 | |
| ID | cemphncflepgmgfhcdegkbkekifodacd |
| 官方網址 | https://chromewebstore.google.com/detail/custom-css-by-denis/cemphncflepgmgfhcdegkbkekifodacd |
| 簡介 | Minimal and secure way to add custom CSS per-domain |
| 檔案大小 | 40.74 KB |
| 安裝次數 | 3,018 |
| 目前版本 | 1.2.0 |
| 更新時間 | 2024-03-04 |
| 上架時間 | 2018-10-20 |
| 評分 | 4.30/5 共 30 次評分 |
| 開發者 | https://sokolov.cc |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/denis-sokolov/chrome-custom-css |
| 說明頁面URL | https://github.com/denis-sokolov/chrome-custom-css/issues |
| 支援的語言 | en,ko |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "__MSG_extension_name__",
"short_name": "__MSG_extension_short_name__",
"version": "1.2.0",
"default_locale": "en",
"description": "__MSG_extension_description__",
"icons": {
"16": "src\/icons\/16.png",
"48": "src\/icons\/48.png",
"128": "src\/icons\/128.png",
"256": "src\/icons\/256.png"
},
"background": {
"service_worker": "src\/background\/index.js",
"type": "module"
},
"action": {
"default_popup": "src\/popup\/index.html"
},
"optional_host_permissions": [
"http:\/\/*\/",
"https:\/\/*\/"
],
"permissions": [
"activeTab",
"scripting",
"storage"
]
} | |