Scrapbox同時検索
Google検索結果画面にScrapboxの検索結果も表示する
Hvad er Scrapbox同時検索?
Scrapbox同時検索 er en Chrome-udvidelse udviklet af ssatoh17, og dens hovedfunktion er "Google検索結果画面にScrapboxの検索結果も表示する".
Udvidelsesskærmbilleder
Download Scrapbox同時検索-udvidelses-CRX-fil
Download Scrapbox同時検索-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
【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)テストリリース Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | pedmflpmjniciclmjmfgemmpeobhmlid |
| Officiel URL | https://chromewebstore.google.com/detail/scrapbox%E5%90%8C%E6%99%82%E6%A4%9C%E7%B4%A2/pedmflpmjniciclmjmfgemmpeobhmlid |
| Beskrivelse | Google検索結果画面にScrapboxの検索結果も表示する |
| Filstørrelse | 286 KB |
| Antal Installationer | 443 |
| Nuværende Version | 1.4.0 |
| Senest Opdateret | 2024-01-08 |
| Udgivelsesdato | 2019-04-15 |
| Bedømmelse | 5.00/5 Samlet 10 Bedømmelser |
| Udvikler | ssatoh17 |
| [email protected] | |
| Betalingsmetode | free |
| URL til Fortrolighedspolitik Side | https://scrapbox.io/pub/プライバシーポリシー |
| Understøttede Sprog | 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": [
" | |