withExEditor
From the context menu (right click), you can "View source" "View selection" or "Edit text" with your favorite editor.
withExEditor क्या है?
withExEditor https://asamuzak.jp द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "From the context menu (right click), you can "View source" "View selection" or "Edit text" with your favorite editor."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में withExEditor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
                        From the context menu (right click), you can "View source" "View selection" or "Edit text" with your favorite editor.
Enabled in (X)HTML, JavaScript, CSS, MathML, SVG, XML, etc.
To use withExEditor, you also need to prepare a host which executes your editor.
Please download the host for withExEditor from asamuzaK/withExEditorHost .                      एक्सटेंशन की मूल जानकारी
| नाम |   |  
| ID | koghhpkkcndhhclklnnnhcpkkplfkgoi | 
| आधिकारिक URL | https://chromewebstore.google.com/detail/withexeditor/koghhpkkcndhhclklnnnhcpkkplfkgoi | 
| विवरण | From the context menu (right click), you can "View source" "View selection" or "Edit text" with your favorite editor. | 
| फ़ाइल का आकार | 251 KB | 
| स्थापना संख्या | 420 | 
| वर्तमान संस्करण | 10.5.7 | 
| अंतिम अपडेट | 2024-01-24 | 
| प्रकाशन तिथि | 2020-07-01 | 
| रेटिंग | 3.50/5 कुल 2 रेटिंग्स | 
| डेवलपर | https://asamuzak.jp | 
| ईमेल | [email protected] | 
| भुगतान के प्रकार | free | 
| एक्सटेंशन वेबसाइट | https://github.com/asamuzaK/withExEditor | 
| सहायता पृष्ठ URL | https://github.com/asamuzaK/withExEditor/issues | 
| समर्थित भाषाएँ | en,en-GB,fr,zh-CN,ja | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "page": "html\/background.html",
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "img\/icon-outline-16.png",
            "32": "img\/icon-outline-32.png"
        },
        "default_title": "__MSG_extensionName__"
    },
    "commands": {
        "execEditor": {
            "description": "__MSG_commandExecEditor__",
            "suggested_key": {
                "default": "Ctrl+Shift+U"
            }
        },
        "openOptionsPage": {
            "description": "__MSG_commandOpenOptions__",
            "suggested_key": {
                "default": "Alt+Shift+U"
            }
        }
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "lib\/mozilla\/browser-polyfill.min.js",
                "js\/content.js"
            ],
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "default_locale": "en",
    "description": "__MSG_extensionDescription__",
    "homepage_url": "https:\/\/github.com\/asamuzaK\/withExEditor",
    "icons": {
        "16": "img\/icon-outline-16.png",
        "32": "img\/icon-outline-32.png",
        "64": "img\/icon-color.png",
        "128": "img\/icon-color-128.png"
    },
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "optional_permissions": [
        "notifications"
    ],
    "options_ui": {
        "open_in_tab": true,
        "page": "html\/options.html"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "nativeMessaging",
        "storage",
        "tabs"
    ],
    "short_name": "__MSG_extensionName__",
    "version": "10.5.7"
}  |  |