Save Inspect Element

Display changes made using inspect element even after refreshing the page!

Save Inspect Elementとは何ですか?

Save Inspect ElementはBuckyによって開発されたChromeの拡張機能で、その主な機能は「Display changes made using inspect element even after refreshing the page!」です。

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

screenshot

Save Inspect Element拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Save all changes done through inspect element and see it after refreshing your page!

This extension has been tested on the following operating systems:

✅ MacOS | 10.13
✅ Windows 10 | 21H2
✅ Ubuntu | 20.04                    

拡張機能の基本情報

名前 Save Inspect Element Save Inspect Element
ID ghpfknnfhakcngbpejoakfcndhmhffkj
公式URL https://chrome.google.com/webstore/detail/save-inspect-element/ghpfknnfhakcngbpejoakfcndhmhffkj
説明 Display changes made using inspect element even after refreshing the page!
ファイルサイズ 90.44 KB
インストール数 1,891
現在のバージョン 0.0.1
最終更新日 2021-08-09
公開日 2021-08-09
評価 2.10/5 合計 10 レビュー
開発者 Bucky
Eメール [email protected]
支払い方法 free
プライバシーポリシーページのURL https://mycodding.com/privacy-policy.html
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Save Inspect Element",
    "version": "0.0.1",
    "description": "Display changes made using inspect element even after refreshing the page!",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.3.1.js",
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ]
}