Automatic bold for newspaper stories

This extension bolds subtitles, interview questions and fact sheets.

Automatic bold for newspaper stories là gì?

Automatic bold for newspaper stories là một tiện ích mở rộng Chrome được phát triển bởi http://paulronga.ch, và tính năng chính của nó là "This extension bolds subtitles, interview questions and fact sheets.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Automatic bold for newspaper stories

Tải xuống các tệp mở rộng Automatic bold for newspaper stories dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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 “:”                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Automatic bold for newspaper stories Automatic bold for newspaper stories
ID pggkolecpaldniejpimefojpacbhjbmb
URL Chính Thức https://chrome.google.com/webstore/detail/automatic-bold-for-newspa/pggkolecpaldniejpimefojpacbhjbmb
Mô tả This extension bolds subtitles, interview questions and fact sheets.
Kích Thước Tệp 83.09 KB
Số Lần Cài Đặt 39
Phiên Bản Hiện Tại 0.9
Cập Nhật Lần Cuối 2018-01-29
Ngày Phát Hành 2018-01-29
Nhà Phát Triển http://paulronga.ch
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}