Save Inspect

Extension for Save Inspection and easy code-less editing!

Save Inspect란 무엇입니까?

Save Inspect은(는) Tobi Situ에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension for Save Inspection and easy code-less editing!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Save Inspect 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Easily edit your existing webpages that are hosted on gitlab using chrome's inspect feature. 
When you save your changes using the extension, it updates the git files in real time by committing your changes.

You can also create new pages as well using the extension and push them to gitlab.                    

확장 프로그램 기본 정보

이름 Save Inspect Save Inspect
ID okdjjdfncmbfeoklehpmadgcdbnlnabd
공식 URL https://chromewebstore.google.com/detail/save-inspect/okdjjdfncmbfeoklehpmadgcdbnlnabd
설명 Extension for Save Inspection and easy code-less editing!
파일 크기 2.73 MB
설치 횟수 1,468
현재 버전 2.0
최근 업데이트 2020-02-28
출시 날짜 2020-02-28
평점 1.44/5 총 9 개의 평점
개발자 Tobi Situ
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Save Inspect",
    "version": "2.0",
    "description": "Extension for Save Inspection and easy code-less editing!",
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/firebasejs\/5.6.0\/firebase-app.js https:\/\/*.firebaseio.com https:\/\/www.gstatic.com\/firebasejs\/5.6.0\/firebase-auth.js https:\/\/www.gstatic.com\/firebasejs\/5.6.0\/firebase-firestore.js;  object-src 'self'",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/logo16.png",
            "32": "images\/logo32.png",
            "48": "images\/logo48.png",
            "128": "images\/logo128.png"
        }
    },
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "manifest_version": 2
}