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
官方網址 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"
        }
    ]
}