Design Mode: Edit any webpage

Edit the text on any website!

Qu'est-ce que Design Mode: Edit any webpage ?

Design Mode: Edit any webpage est une extension Chrome développée par PomPom, et sa fonction principale est "Edit the text on any website!".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Design Mode: Edit any webpage

Téléchargez les fichiers d'extension Design Mode: Edit any webpage au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Design Mode: Edit any webpage Design Mode: Edit any webpage
ID fgmjppcglpnaigphlkjioilhjpebhlla
URL Officiel https://chromewebstore.google.com/detail/design-mode-edit-any-webp/fgmjppcglpnaigphlkjioilhjpebhlla
Description Edit the text on any website!
Taille du Fichier 90.97 KB
Nombre d'Installations 37
Version Actuelle 2.0.0
Dernière Mise à Jour 2021-08-09
Date de Publication 2021-04-15
Développeur PomPom
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://forms.gle/nJahJziDYQWfpb5j9
Langues Prises en Charge 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
}