Inspector Saver

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

Vad är Inspector Saver?

Inspector Saver är en Chrome-tillägg utvecklad av https://trumani.com, och dess huvudfunktion är "Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.".

Tilläggsskärmbilder

screenshot

Ladda ner Inspector Saver-förlängningens CRX-fil

Ladda ner Inspector Saver-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Inspector Saver Inspector Saver
ID jiijigihllkgngjmffmmhjdkgdankllh
Officiell webbadress https://chromewebstore.google.com/detail/inspector-saver/jiijigihllkgngjmffmmhjdkgdankllh
Beskrivning Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.
Filstorlek 135 KB
Antal Installationer 660
Aktuell Version 1.1
Senast Uppdaterad 2019-10-16
Publiceringsdatum 2019-10-13
Betyg 2.17/5 Totalt 6 Betyg
Utvecklare https://trumani.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://trumani.com/products
URL till Sekretesspolicy Sidan http://trumani.com/privacy
Stödda Språk 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"
        }
    ]
}