Inspect CSS
The easiest way to inspect and edit CSS
Что такое Inspect CSS?
Inspect CSS - это расширение Chrome, разработанное kholid060, и его основная функция - "The easiest way to inspect and edit CSS".
Снимки экрана расширения
Скачать файл CRX расширения Inspect CSS
Скачайте файлы расширений Inspect CSS в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Features:
🔎 Get CSS Properties from any element by selecting it
✏️ Get and edit element attributes
📷 Download website assets
⌨️ Add your custom CSS to the website
🎨 Get the color palette of the website
🧭 DOM Navigation
🎯 Color picker
GitHub:
https://github.com/Kholid060/inspect-css Основная информация о расширении
| Название | |
| ID | fbopfffegfehobgoommphghohinpkego |
| Официальный URL | https://chromewebstore.google.com/detail/inspect-css/fbopfffegfehobgoommphghohinpkego |
| Описание | The easiest way to inspect and edit CSS |
| Размер файла | 380 KB |
| Количество установок | 5,344 |
| Текущая Версия | 1.0.2 |
| Последнее Обновление | 2024-02-09 |
| Дата публикации | 2020-09-15 |
| Рейтинг | 4.20/5 Всего 10 оценок |
| Разработчик | kholid060 |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/Kholid060/inspect-css |
| URL страницы помощи | https://github.com/Kholid060/inspect-css/issues |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"default_locale": "en",
"name": "__MSG_extensionName__",
"version": "1.0.2",
"description": "__MSG_extensionDescription__",
"permissions": [
"activeTab",
"scripting",
"storage"
],
"action": [],
"background": {
"service_worker": "src\/pages\/background\/index.js",
"type": "module"
},
"icons": {
"128": "icon-128.png"
},
"web_accessible_resources": [
{
"resources": [
"assets\/js\/*.js",
"assets\/woff2\/*.woff2",
"assets\/css\/*.css",
"icon-128.png",
"icon-34.png"
],
"matches": [
"*:\/\/*\/*"
]
}
]
} | |