Custom Blogger Extension

Custom hacks for blogger developers

Custom Blogger Extension란 무엇입니까?

Custom Blogger Extension은(는) Muhammad Abu 'l-Gharaniq에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Custom hacks for blogger developers"입니다.

확장 프로그램 스크린샷

screenshot

Custom Blogger Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Chrome Extension for Blogger (blogger.com) developers, with shortcuts and basic edits.

Shortcuts
CTRL + SPACE to open blog URL in new tap from html editor page
CTRL + S to save template code
CTRL + I to open live preview on html editor page

Snippets
New feature for code snippets, select your snippet, and it will be copied directly to clipboard.

Note: Sometimes snippet selector not showing, don't worry just click on any button on keyboard, or refresh the editor page.                    

확장 프로그램 기본 정보

이름 Custom Blogger Extension Custom Blogger Extension
ID edbhcnncibhjdeflaagkbdklifcdklmc
공식 URL https://chromewebstore.google.com/detail/custom-blogger-extension/edbhcnncibhjdeflaagkbdklifcdklmc
설명 Custom hacks for blogger developers
파일 크기 16.39 KB
설치 횟수 503
현재 버전 0.0.2
최근 업데이트 2020-09-02
출시 날짜 2020-09-01
평점 5.00/5 총 3 개의 평점
개발자 Muhammad Abu 'l-Gharaniq
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/midoghranek/custom-blogger
개인정보 보호 정책 페이지 URL https://ghranek.com/privacy
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Custom Blogger Extension",
    "description": "Custom hacks for blogger developers",
    "version": "0.0.2",
    "icons": {
        "16": "assets\/icon16.png",
        "32": "assets\/icon32.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.blogger.com\/*"
            ],
            "js": [
                "scripts\/secret.js",
                "scripts\/snippetsData.js",
                "scripts\/snippets.js",
                "scripts\/content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "assets\/icon16.png",
        "default_popup": "public\/popup.html"
    }
}