Design Mode: Edit any webpage

Edit the text on any website!

Cos'è Design Mode: Edit any webpage?

Design Mode: Edit any webpage è un'estensione di Chrome sviluppata da PomPom, e la sua funzione principale è "Edit the text on any website!".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Design Mode: Edit any webpage

Scarica i file di estensione Design Mode: Edit any webpage in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Design Mode: Edit any webpage Design Mode: Edit any webpage
ID fgmjppcglpnaigphlkjioilhjpebhlla
URL Ufficiale https://chromewebstore.google.com/detail/design-mode-edit-any-webp/fgmjppcglpnaigphlkjioilhjpebhlla
Descrizione Edit the text on any website!
Dimensione del File 90.97 KB
Conteggio Installazioni 37
Versione Corrente 2.0.0
Ultimo Aggiornamento 2021-08-09
Data di Pubblicazione 2021-04-15
Sviluppatore PomPom
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://forms.gle/nJahJziDYQWfpb5j9
Lingue Supportate 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
}