ActionScript 3.0 Search

Adds support to the omnibox to search the AS3 reference docs.

ActionScript 3.0 Searchとは何ですか?

ActionScript 3.0 Searchはxeno.beによって開発されたChromeの拡張機能で、その主な機能は「Adds support to the omnibox to search the AS3 reference docs.」です。

拡張機能のスクリーンショット

screenshot

ActionScript 3.0 Search拡張機能のCRXファイルをダウンロード

ActionScript 3.0 Search拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Use this omnibox plugin to directly search the online AS3 help.

Simply type 'AS3 ' to start your search, then the name of whatever class you are looking for help with, to take you straight to the relevant page in Adobe's online documentation.

Typing just 'AS3 (space)' + enter will take you to the index page.

Now supports setting which language to view the docs in. (Either through the options page, or after having searched click on the flag icon in the omnibox).

Source from: 

https://github.com/mpress/developer-omniboxes-for-chrome                    

拡張機能の基本情報

名前 ActionScript 3.0 Search ActionScript 3.0 Search
ID epbimhhenalihknndiglmjaehfpifaeg
公式URL https://chromewebstore.google.com/detail/actionscript-30-search/epbimhhenalihknndiglmjaehfpifaeg
説明 Adds support to the omnibox to search the AS3 reference docs.
ファイルサイズ 139 KB
インストール数 5,156
現在のバージョン 3.1.0
最終更新日 2015-10-09
公開日 2015-10-09
評価 3.57/5 合計 7 レビュー
開発者 xeno.be
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ActionScript 3.0 Search",
    "manifest_version": 2,
    "description": "Adds support to the omnibox to search the AS3 reference docs.",
    "background": {
        "scripts": [
            "String.js",
            "index.js",
            "background.js",
            "action\/actionHandler.js"
        ]
    },
    "icons": {
        "128": "icons\/icon128.png",
        "32": "icons\/icon32.png",
        "16": "icons\/icon16.png"
    },
    "omnibox": {
        "keyword": "as3"
    },
    "permissions": [
        "tabs",
        "*:\/\/help.adobe.com\/"
    ],
    "options_page": "options.html",
    "page_action": {
        "default_icon": {
            "19": "action\/flags\/19\/en_US.jpg",
            "38": "action\/flags\/38\/en_US.jpg"
        },
        "default_title": "AS3 language",
        "default_popup": "action\/popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/help.adobe.com\/*"
            ]
        }
    ],
    "version": "3.1.0"
}