Inspector Saver

Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.

ما هو Inspector Saver؟

Inspector Saver هو إضافة Chrome تم تطويرها بواسطة https://trumani.com، والميزة الرئيسية لها هي "Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Inspector Saver

قم بتنزيل ملفات الامتداد Inspector Saver بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Store HTML and CSS changes in the browser so that you can return to it later. Showcase your changes with colleagues and clients by loading the edits. You can remove all edits you have captured on a specific page or on all pages at any time.                    

معلومات أساسية عن التمديد

الاسم Inspector Saver Inspector Saver
ID jiijigihllkgngjmffmmhjdkgdankllh
عنوان URL الرسمي https://chromewebstore.google.com/detail/inspector-saver/jiijigihllkgngjmffmmhjdkgdankllh
الوصف Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.
حجم الملف 135 KB
عدد التثبيتات 660
النسخة الحالية 1.1
آخر تحديث 2019-10-16
تاريخ النشر 2019-10-13
تقييم 2.17/5 مجموع تقييمات 6
المطور https://trumani.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://trumani.com/products
عنوان صفحة سياسة الخصوصية http://trumani.com/privacy
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Inspector Saver",
    "description": "Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.",
    "version": "1.1",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "index.html",
        "default_icon": "trumani_material.png"
    },
    "devtools_page": "devtools.html",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "icons": {
        "16": "detective-16.png",
        "48": "detective-48.png",
        "128": "detective-128.png"
    },
    "background": {
        "scripts": [
            "js\/main.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "js\/content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_idle"
        }
    ]
}