Automatic bold for newspaper stories

This extension bolds subtitles, interview questions and fact sheets.

Automatic bold for newspaper stories란 무엇입니까?

Automatic bold for newspaper stories은(는) http://paulronga.ch에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension bolds subtitles, interview questions and fact sheets."입니다.

확장 프로그램 스크린샷

screenshot

Automatic bold for newspaper stories 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension automatically bolds subtitles, interview questions and fact sheets.

It also adds Ctrl-B (bold), Ctrl-I (italic) and Ctrl-K (link) shortcuts to add the matching HTML tags. This can be disabled. Also works on Mac OS with ⌘ instead of Ctrl.

– Subtitle: Each line without dot gets bold.

– Interview: The first paragraph with “?” gets bold, then each second paragraph.

– Factsheet: Each beginning of paragraph gets bold until the “:”                    

확장 프로그램 기본 정보

이름 Automatic bold for newspaper stories Automatic bold for newspaper stories
ID pggkolecpaldniejpimefojpacbhjbmb
공식 URL https://chrome.google.com/webstore/detail/automatic-bold-for-newspa/pggkolecpaldniejpimefojpacbhjbmb
설명 This extension bolds subtitles, interview questions and fact sheets.
파일 크기 83.09 KB
설치 횟수 39
현재 버전 0.9
최근 업데이트 2018-01-29
출시 날짜 2018-01-29
개발자 http://paulronga.ch
이메일 [email protected]
결제 유형 free
지원되는 언어 en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "default_locale": "en",
    "version": "0.9",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "__MSG_title__"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "addBold.js"
            ]
        }
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "Shortcut to toggle the popup"
        }
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ]
}