sourceditor

A simple and minimal extension that enables you to edit the source code of any website and save it.

Τι είναι το sourceditor;

Το sourceditor είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον littlen4, και η κύρια λειτουργία του είναι "A simple and minimal extension that enables you to edit the source code of any website and save it.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης sourceditor

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

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

                        sourceditor is a simple way to edit any website's source code and save it. The next time you visit a site you edited, the changes will still be there.                    

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

Όνομα sourceditor sourceditor
ID eonnlpadjpdnandpobhloihongackbpg
Επίσημο URL https://chromewebstore.google.com/detail/sourceditor/eonnlpadjpdnandpobhloihongackbpg
Περιγραφή A simple and minimal extension that enables you to edit the source code of any website and save it.
Μέγεθος Αρχείου 175 KB
Αριθμός Εγκαταστάσεων 3,000
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2019-03-08
Ημερομηνία Δημοσίευσης 2019-03-08
Αξιολόγηση 4.39/5 Συνολικά 44 Αξιολογήσεις
Προγραμματιστής littlen4
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "sourceditor",
    "description": "A simple and minimal extension that enables you to edit the source code of any website and save it.",
    "version": "1.0",
    "manifest_version": 2,
    "content_scripts": [
        {
            "js": [
                "jquery.js",
                "script.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "icons": {
        "128": "icon.png",
        "48": "citadel.jpg"
    },
    "permissions": [],
    "web_accessible_resources": [
        "*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}