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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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'"
}