Inspector Saver

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

Inspector Saverとは何ですか?

Inspector Saverはhttps://trumani.comによって開発されたChromeの拡張機能で、その主な機能は「Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.」です。

拡張機能のスクリーンショット

screenshot

Inspector Saver拡張機能のCRXファイルをダウンロード

Inspector Saver拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
        }
    ]
}