全文検索君

全文検索君

全文検索ソフトです。通常のFirefoxの検索はurl名とタイトル名からしか検索できませんが、 この拡張ソフトを使えばhtml上のテキストを全文検索できるようになります。 FirefoxでWEBサイトにアクセスすると、 コンテンツスクリプトでhtml上のテキストを取得しデータベースに自動で登録します。 そのデータベースで全文検索ができるようになります。 アイコンをクリックから検索できます。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "全文検索君",
  "description": "全文検索エンジンです。",
  "version": "1.0.3",
  "icons": {
    "18": "icon.png"
  },
  "permissions": [
    "*://*/*/",
    "tabs",
    "storage"
  ],
  "browser_action": {
    "default_icon": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "contentscripts.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{4f35d04d-0ced-44e3-891c-01dc906bec30}"
    }
  }
}