Jimmy's CSS Injector
This extension changes css style for a specific page using style injection.
Что такое Jimmy's CSS Injector?
Jimmy's CSS Injector - это расширение Chrome, разработанное jimmyruan12, и его основная функция - "This extension changes css style for a specific page using style injection.".
Снимки экрана расширения
Скачать файл CRX расширения Jimmy's CSS Injector
Скачайте файлы расширений Jimmy's CSS Injector в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Simple chrome extension that can inject css into the existing web page.
This app can accomplish the following:
1. Inject css into the existing web page.
2. It allows saving multiple css styles in the chrome system.
3. It can undo injected css style. Основная информация о расширении
| Название | |
| ID | cdelafiegdlpmfomhfcckgaihmclcgmd |
| Официальный URL | https://chrome.google.com/webstore/detail/jimmys-css-injector/cdelafiegdlpmfomhfcckgaihmclcgmd |
| Описание | This extension changes css style for a specific page using style injection. |
| Размер файла | 2.21 MB |
| Количество установок | 40 |
| Текущая Версия | 1.10.1 |
| Последнее Обновление | 2017-09-07 |
| Дата публикации | 2017-09-07 |
| Рейтинг | 2.00/5 Всего 1 оценок |
| Разработчик | jimmyruan12 |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Jimmy's CSS Injector",
"short name": "css injector",
"description": "This extension changes css style for a specific page using style injection.",
"version": "1.10.1",
"icons": {
"128": "icons\/icon128.png",
"48": "icons\/icon48.png",
"16": "icons\/icon16.png"
},
"page_action": {
"default_icon": "icons\/icon16.png",
"default_popup": "popup.html",
"default_title": "PageFontStyle"
},
"background": {
"scripts": [
"js\/helper.js",
"js\/eventPage.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"js\/jquery-3.1.0.min.js",
"js\/helper.js",
"js\/content.js"
],
"css": [
"css\/content.css"
],
"run_at": "document_end"
}
],
"permissions": [
"tabs",
"contextMenus",
"tts",
"storage",
"webNavigation",
"*:\/\/*\/*"
]
} | |