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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    ]
}