Inspector Saver

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

Inspector Saver क्या है?

Inspector Saver https://trumani.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Inspector Saver एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
गोपनीयता नीति पृष्ठ URL 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"
        }
    ]
}