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

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

확장 프로그램 사용 설명서

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