Naver Blog Extension

Naver Blog Extension

Naver Blog Extension란 무엇입니까?

Naver Blog Extension은(는) rittoritto에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Naver Blog Extension"입니다.

확장 프로그램 스크린샷

screenshot

Naver Blog Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        네이버 블로그 확장프로그램 - 포스팅을 읽는 시간, 본문 글자 수, 본문 전체 길이를 측정해서 알려줍니다.

---------------------------------------------------------------------------------------------------------
이 확장 프로그램은 Naver에서 공식으로 제작한 것이 아닌 개인에 의해 만들어진 프로그램입니다. 
오해 없으시길 바랍니다.                    

확장 프로그램 기본 정보

이름 Naver Blog Extension Naver Blog Extension
ID mlhcnnjbhkkhjmphijiloijemnbjplnk
공식 URL https://chromewebstore.google.com/detail/naver-blog-extension/mlhcnnjbhkkhjmphijiloijemnbjplnk
설명 Naver Blog Extension
파일 크기 9.41 KB
설치 횟수 136
현재 버전 1.0
최근 업데이트 2022-12-06
출시 날짜 2022-11-29
평점 5.00/5 총 2 개의 평점
개발자 rittoritto
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://illustudio.co.kr
도움말 페이지 URL https://blog.illustudio.co.kr
지원되는 언어 ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Naver Blog Extension",
    "version": "1.0",
    "description": "Naver Blog Extension",
    "icons": {
        "16": "static\/icon.png",
        "48": "static\/icon.png",
        "128": "static\/icon.png"
    },
    "action": {
        "default_icons": {
            "16": "static\/icon.png",
            "48": "static\/icon.png",
            "128": "static\/icon.png"
        },
        "default_title": "Naver Blog Extension",
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/blog.naver.com\/*"
            ],
            "exclude": [
                "https:\/\/blog.naver.com\/*?Redirect=Write"
            ],
            "all_frames": true,
            "js": [
                "contentScript.js"
            ],
            "css": [
                "static\/content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "static\/content.css"
            ],
            "matches": [
                "https:\/\/blog.naver.com\/*"
            ]
        }
    ]
}