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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension bolds subtitles, interview questions and fact sheets."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Automatic bold for newspaper stories एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}