Permanent Inspect Element

Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing

Permanent Inspect Elementとは何ですか?

Permanent Inspect ElementはMehran Jalaliによって開発されたChromeの拡張機能で、その主な機能は「Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing」です。

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

screenshot

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

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

拡張機能の使用方法

                        This extension lets you save the changes you make to a static web page using Inspect Element to remain there even after you refresh the page.  So if you want to modify a web page to make it easier for you to read, or to remove an intrusive banner, you can do that, and you wouldn't have to re-do it every time you visit the page again.

Of course, this only changes the content of the page on *your* computer and not the website itself.                    

拡張機能の基本情報

名前 Permanent Inspect Element Permanent Inspect Element
ID alfgclaljdbleenfjjnkefddlgbknllp
公式URL https://chromewebstore.google.com/detail/permanent-inspect-element/alfgclaljdbleenfjjnkefddlgbknllp
説明 Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing
ファイルサイズ 109 KB
インストール数 71,918
現在のバージョン 0.1.1
最終更新日 2020-08-11
公開日 2020-08-03
評価 2.92/5 合計 204 レビュー
開発者 Mehran Jalali
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Permanent Inspect Element",
    "version": "0.1.1",
    "description": "Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing",
    "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"
    ]
}