Scrapbox同時検索

Google検索結果画面にScrapboxの検索結果も表示する

Qu'est-ce que Scrapbox同時検索 ?

Scrapbox同時検索 est une extension Chrome développée par ssatoh17, et sa fonction principale est "Google検索結果画面にScrapboxの検索結果も表示する".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Scrapbox同時検索

Téléchargez les fichiers d'extension Scrapbox同時検索 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

                        【Scrapbox( https://scrapbox.io/ )の非公式拡張機能】
 Googleの検索結果画面に、Scrapboxの検索結果も表示する拡張機能です。

【特徴】
 ・Googleの検索結果の画面で、検索ボックスに文字を入力する度にリアルタイムに検索結果を表示します。
 ・複数のScrapboxプロジェクトを一括検索できます。

【更新履歴】
1.4.0(2024-01-07)Chrome拡張機能の仕様変更に伴い、manifest.json、その他を更新
1.3.1(2019-04-16)Chrome拡張機能の仕様変更に伴い、search APIのcallをbackground.jsから行うように変更
1.3.0(2018-10-07)https://nuxttest-aa443.firebaseapp.com/ でScrapbox検索専用ツールとして使うこともできるようにした
1.2.0(2018-09-27)オンプレ版にも対応(ドメイン名も指定できるようにした)
1.1.0(2018-09-27)検索結果のリンクや選択文字列のドラッグ&ドロップでScrapboxに投稿できるようにした(バックグラウンドでタブを開くか否かは、設定で指定可能です)
1.0.9.1(2018-05-02)Scrapbox検索結果の表示位置を、Wikipedia等よりも上部に表示するようにした
1.0.9(2018-05-02)Scrapbox検索結果のヘッダをクリックするとScrapboxの検索結果画面を開くようにした
1.0.7(2018-05-02)複数プロジェクトを指定した場合にクイック検索できない不具合を解消
1.0.4(2018-05-01)Scrapboxプロジェクト名が未指定の場合、Toast表示もするようにした
1.0.3(2018-05-01)更新履歴をオプション画面にも追加
1.0.2(2018-05-01)Javascriptのファイル名を日本語名から英語に変更
1.0.1(2018-05-01)検索URLの末尾がqパラメータの場合に検索結果が取得できない不具合を修正
1.0.0(2018-05-01)複数のScrapboxプロジェクトの一括検索に対応
0.6.1(2018-04-30)テストリリース                    

Informations de Base sur l'Extension

Nom Scrapbox同時検索 Scrapbox同時検索
ID pedmflpmjniciclmjmfgemmpeobhmlid
URL Officiel https://chromewebstore.google.com/detail/scrapbox%E5%90%8C%E6%99%82%E6%A4%9C%E7%B4%A2/pedmflpmjniciclmjmfgemmpeobhmlid
Description Google検索結果画面にScrapboxの検索結果も表示する
Taille du Fichier 286 KB
Nombre d'Installations 443
Version Actuelle 1.4.0
Dernière Mise à Jour 2024-01-08
Date de Publication 2019-04-15
Évaluation 5.00/5 Total 10 Évaluations
Développeur ssatoh17
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://scrapbox.io/pub/プライバシーポリシー
Langues Prises en Charge ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Scrapbox\u540c\u6642\u691c\u7d22",
    "short_name": "Scrapbox\u540c\u6642\u691c\u7d22",
    "description": "Google\u691c\u7d22\u7d50\u679c\u753b\u9762\u306bScrapbox\u306e\u691c\u7d22\u7d50\u679c\u3082\u8868\u793a\u3059\u308b",
    "version": "1.4.0",
    "action": {
        "default_icon": ".\/img\/logo.png",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/search*",
                "https:\/\/www.google.co.jp\/search*",
                "https:\/\/nuxttest-aa443.firebaseapp.com\/*"
            ],
            "css": [
                "lib\/iziToast\/iziToast.min.css",
                "css\/myStyles.css"
            ],
            "js": [
                "js\/jquery-3.3.1.min.js",
                "lib\/iziToast\/iziToast.min.js",
                "js\/content_script_ScrapboxSearcher.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/scrapbox.io\/*"
    ],
    "icons": {
        "16": ".\/img\/icon-16x16.png",
        "48": ".\/img\/icon-48x48.png",
        "128": ".\/img\/icon-128x128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "*.css",
                "*.js",
                "*.png",
                "*.html",
                "*.ico",
                "popup.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}