Design Mode: Edit any webpage

Edit the text on any website!

Design Mode: Edit any webpage क्या है?

Design Mode: Edit any webpage PomPom द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Edit the text on any website!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Design Mode: Edit any webpage एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
}