HelpLine

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

Qu'est-ce que HelpLine ?

HelpLine est une extension Chrome développée par Toshiyuki Masui, et sa fonction principale est "'/ ' をomniboxに入力してHelpfeel検索する".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension HelpLine

Téléchargez les fichiers d'extension HelpLine au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

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

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

Informations de Base sur l'Extension

Nom HelpLine HelpLine
ID mbefahemlcpokleccibpeldmeagclcjp
URL Officiel https://chromewebstore.google.com/detail/helpline/mbefahemlcpokleccibpeldmeagclcjp
Description '/ ' をomniboxに入力してHelpfeel検索する
Taille du Fichier 412 KB
Nombre d'Installations 104
Version Actuelle 1.12
Dernière Mise à Jour 2020-08-29
Date de Publication 2020-08-07
Développeur Toshiyuki Masui
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://scrapbox.io/HelpLine
Langues Prises en Charge 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"
}