Edit with Sublime Text™

Live editing text and HTML content of the page with the Sublime Text from the page context or DevTools.

Τι είναι το Edit with Sublime Text™;

Το Edit with Sublime Text™ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rynu.smith, και η κύρια λειτουργία του είναι "Live editing text and HTML content of the page with the Sublime Text from the page context or DevTools.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Edit with Sublime Text™

Λήψη αρχείων επέκτασης Edit with Sublime Text™ σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension facilitates editing of HTML node element's content within the popular Sublime Text editor, providing real-time updates upon saving the generated temporary file. Additionally, it enables external editing of "TEXTAREA," "INPUT[type=search]," and "INPUT[type=text]" elements.

There are three methods for sending content to the Sublime Editor:

1. Activate the simple inspector using the action button, click on the HTML node, and press the ESC key to cancel the operation if needed.
2. Use the DevTools "Elements" panel, where a new sub-pane is added. Select "Edit as HTML," choose an HTML node, and press the button to open the content in the Sublime Text editor.
3. Right-click on a "TEXTAREA" or "INPUT[type=text]" element and use the context menu item.

This extension supports simultaneous editing of multiple nodes. Each editor has its unique temporary text file, and saving updates the content of the respective node. These files are stored in the operating system's temporary directory with random filenames.

Additionally, the extension allows the DevTools panel to convert an external script or CSS resource to an internal equivalent. This functionality enables sending the content of remote resources to the external editor.

File extensions used for temporary resource creation:
1. HTML -> when innerHTML or outerHTML content is sent to the external editor.
2. JS -> when editing an inline script.
3. TXT -> when editing an editable area.

--- Legal
"Sublime Text" is a trademark of Sublime HQ Pty Ltd, registered in the U.S. and other countries. This extension is an independent project with no affiliation to the mentioned product.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Edit with Sublime Text™ Edit with Sublime Text™
ID eiejadjdcchfommckmikpcdnihljbpai
Επίσημο URL https://chromewebstore.google.com/detail/edit-with-sublime-text/eiejadjdcchfommckmikpcdnihljbpai
Περιγραφή Live editing text and HTML content of the page with the Sublime Text from the page context or DevTools.
Μέγεθος Αρχείου 190 KB
Αριθμός Εγκαταστάσεων 11,032
Τρέχουσα Έκδοση 0.2.4
Τελευταία Ενημέρωση 2023-11-22
Ημερομηνία Δημοσίευσης 2020-04-14
Αξιολόγηση 3.75/5 Συνολικά 36 Αξιολογήσεις
Προγραμματιστής rynu.smith
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://webextension.org/listing/edit-as-html.html?from=sublime
Διεύθυνση URL της Σελίδας Βοήθειας https://webextension.org/listing/edit-as-html.html?from=sublime
URL της Σελίδας Πολιτικής Απορρήτου https://add0n.com/policies/rynu.smith.txt
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Edit with Sublime Text\u2122",
    "description": "__MSG_description__",
    "version": "0.2.4",
    "default_locale": "en",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "activeTab",
        "nativeMessaging",
        "notifications",
        "contextMenus",
        "scripting"
    ],
    "optional_permissions": [
        "downloads"
    ],
    "optional_host_permissions": [
        "*:\/\/*\/*"
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "offline_enabled": true,
    "action": [],
    "options_ui": {
        "page": "\/data\/options\/index.html"
    },
    "icons": {
        "16": "\/data\/icons\/16.png",
        "32": "\/data\/icons\/32.png",
        "48": "\/data\/icons\/48.png",
        "64": "\/data\/icons\/64.png",
        "128": "\/data\/icons\/128.png",
        "256": "\/data\/icons\/256.png",
        "512": "\/data\/icons\/512.png"
    },
    "homepage_url": "https:\/\/webextension.org\/listing\/edit-as-html.html?from=sublime",
    "commands": {
        "_execute_action": []
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/data\/native\/index.html"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}