HelpLine

'/ ' をomniboxに入力してHelpfeel検索する

What is HelpLine?

HelpLine is a Chrome extension developed by Toshiyuki Masui, and its main feature is "'/ ' をomniboxに入力してHelpfeel検索する".

Extension Screenshots

screenshot

Download HelpLine Extension CRX File

Download HelpLine extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        自分用のヘルプをChromeブラウザのomnibox(URLを表示したり検索を行なったりすることができる画面上部のテキストエリア)で検索できるようになります。

データはScrapboxページに記述します。Scrapboxページ内で
「? xyzに関する説明」
のようなヘルプ文字列を書いておいてHelpLineボタンを押すと、この説明がChromeのデータベースに読み込まれ、omniboxで検索できるようになります。HelpLineをomniboxで起動するには「/ 」(スラッシュとスペース)を押します。

Scrapbox以外のページを表示しているときにHelpLineボタンを押すとダイヤログが表示され、ヘルプ文字列を登録することができます。                    

Extension Basic Information

Name HelpLine HelpLine
ID mbefahemlcpokleccibpeldmeagclcjp
Official URL https://chromewebstore.google.com/detail/helpline/mbefahemlcpokleccibpeldmeagclcjp
Description '/ ' をomniboxに入力してHelpfeel検索する
File Size 412 KB
Installation Count 104
Current Version 1.12
Last Updated 2020-08-29
Publish Date 2020-08-07
Developer Toshiyuki Masui
Email [email protected]
Payment Type free
Extension Website https://scrapbox.io/HelpLine
Supported Languages ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HelpLine",
    "description": "'\/ ' \u3092omnibox\u306b\u5165\u529b\u3057\u3066Helpfeel\u691c\u7d22\u3059\u308b",
    "version": "1.12",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "downloads"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "content_script_browserify.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "background_browserify.js"
        ],
        "persistent": false
    },
    "omnibox": {
        "keyword": "\/"
    },
    "browser_action": {
        "default_icon": {
            "16": "helpline-16.png"
        },
        "default_title": "Helpfeel\u767b\u9332"
    },
    "icons": {
        "16": "helpline-16.png",
        "32": "helpline-32.png",
        "48": "helpline-48.png",
        "96": "helpline-96.png",
        "128": "helpline-128.png",
        "192": "helpline-192.png"
    },
    "options_page": "setting.html"
}