sourceditor

A simple and minimal extension that enables you to edit the source code of any website and save it.

Что такое sourceditor?

sourceditor - это расширение Chrome, разработанное littlen4, и его основная функция - "A simple and minimal extension that enables you to edit the source code of any website and save it.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения sourceditor

Скачайте файлы расширений sourceditor в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        sourceditor is a simple way to edit any website's source code and save it. The next time you visit a site you edited, the changes will still be there.                    

Основная информация о расширении

Название sourceditor sourceditor
ID eonnlpadjpdnandpobhloihongackbpg
Официальный URL https://chromewebstore.google.com/detail/sourceditor/eonnlpadjpdnandpobhloihongackbpg
Описание A simple and minimal extension that enables you to edit the source code of any website and save it.
Размер файла 175 KB
Количество установок 3,000
Текущая Версия 1.0
Последнее Обновление 2019-03-08
Дата публикации 2019-03-08
Рейтинг 4.39/5 Всего 44 оценок
Разработчик littlen4
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "sourceditor",
    "description": "A simple and minimal extension that enables you to edit the source code of any website and save it.",
    "version": "1.0",
    "manifest_version": 2,
    "content_scripts": [
        {
            "js": [
                "jquery.js",
                "script.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "icons": {
        "128": "icon.png",
        "48": "citadel.jpg"
    },
    "permissions": [],
    "web_accessible_resources": [
        "*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}