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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
}