Inject Code
Inject different javascript or css code to every website, when you want
Что такое Inject Code?
Inject Code - это расширение Chrome, разработанное max, и его основная функция - "Inject different javascript or css code to every website, when you want".
Снимки экрана расширения
Скачать файл CRX расширения Inject Code
Скачайте файлы расширений Inject Code в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Extension will remember all css/js code you injected in every website and auto-inject them when web page is loaded.
Features:
- inject custom js/css to website
- inject CDN links to website
- 38 most popular themes
- auto-inject code to site option ( after loaded page scripts will inject automatically)
- highlight syntax errors and warnings
- hot keys :
* Ctrl+Enter - run code,
* Ctrl+F - find in editor
For inject code to site:
- open browser devtools panel,
- go to "Inject code" tab
- write code ( on typing code autosaving )
- on right top corner set ckeckbox "Inject code", and after reload code will be injecting to page ( or press buttom Play for once execute code ) Основная информация о расширении
| Название | |
| ID | gpaakhhkcmlenabckmapmlfnajboobbi |
| Официальный URL | https://chromewebstore.google.com/detail/inject-code/gpaakhhkcmlenabckmapmlfnajboobbi |
| Описание | Inject different javascript or css code to every website, when you want |
| Размер файла | 2.96 MB |
| Количество установок | 792 |
| Текущая Версия | 0.91.21 |
| Последнее Обновление | 2020-08-04 |
| Дата публикации | 2020-07-06 |
| Рейтинг | 4.00/5 Всего 6 оценок |
| Разработчик | max |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Inject Code",
"description": "Inject different javascript or css code to every website, when you want",
"version": "0.91.21",
"minimum_chrome_version": "16.0.884",
"permissions": [
"activeTab",
"*:\/\/*\/*"
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content.js"
]
}
],
"icons": {
"16": "16.png",
"32": "32.png",
"48": "48.png",
"128": "128.png"
},
"devtools_page": "devtools.html",
"manifest_version": 2
} | |