Design Mode: Edit any webpage

Edit the text on any website!

Что такое Design Mode: Edit any webpage?

Design Mode: Edit any webpage - это расширение Chrome, разработанное PomPom, и его основная функция - "Edit the text on any website!".

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

screenshot
screenshot

Скачать файл CRX расширения Design Mode: Edit any webpage

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

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

                        Welcome to Design Mode!

Tutorial
Click the extension to turn edit mode on or off
The clear button will clear and reload the page
Drag images around to move them
Right click on any page to quickly edit anything

Keyboard Shortcuts:
Ctrl + B
Ctrl + I
Ctrl + U
Ctrl + X
Ctrl + Z
And more...

Help
If you find any bugs or need help go here https://forms.gle/nJahJziDYQWfpb5j9

Changelog
2.0.0
Added a full UI
Added saving
Added clear button
Quickly edit by right clicking on any page
Image dragging note

1.2.0
Added saving (coming soon)
Added keyboard shortcuts section

1.0.0
Released!                    

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

Название Design Mode: Edit any webpage Design Mode: Edit any webpage
ID fgmjppcglpnaigphlkjioilhjpebhlla
Официальный URL https://chromewebstore.google.com/detail/design-mode-edit-any-webp/fgmjppcglpnaigphlkjioilhjpebhlla
Описание Edit the text on any website!
Размер файла 90.97 KB
Количество установок 37
Текущая Версия 2.0.0
Последнее Обновление 2021-08-09
Дата публикации 2021-04-15
Разработчик PomPom
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://forms.gle/nJahJziDYQWfpb5j9
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon-128.png",
        "default_title": "Design Mode"
    },
    "name": "Design Mode: Edit any webpage",
    "short_name": "Design Mode",
    "description": "Edit the text on any website!",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.3.1.js",
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "version": "2.0.0",
    "manifest_version": 2
}