Custom CSS by Denis
Minimal and secure way to add custom CSS per-domain
Что такое Custom CSS by Denis?
Custom CSS by Denis - это расширение Chrome, разработанное https://sokolov.cc, и его основная функция - "Minimal and secure way to add custom CSS per-domain".
Снимки экрана расширения
Скачать файл CRX расширения Custom CSS by Denis
Скачайте файлы расширений 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.
Основная информация о расширении
Название | Custom CSS by Denis |
ID | cemphncflepgmgfhcdegkbkekifodacd |
Официальный URL | 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" ] } |