ActionScript 3.0 Search

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

ActionScript 3.0 Search là gì?

ActionScript 3.0 Search là một tiện ích mở rộng Chrome được phát triển bởi xeno.be, và tính năng chính của nó là "Adds support to the omnibox to search the AS3 reference docs.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ActionScript 3.0 Search

Tải xuống các tệp mở rộng ActionScript 3.0 Search dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ActionScript 3.0 Search ActionScript 3.0 Search
ID epbimhhenalihknndiglmjaehfpifaeg
URL Chính Thức https://chromewebstore.google.com/detail/actionscript-30-search/epbimhhenalihknndiglmjaehfpifaeg
Mô tả Adds support to the omnibox to search the AS3 reference docs.
Kích Thước Tệp 139 KB
Số Lần Cài Đặt 5,156
Phiên Bản Hiện Tại 3.1.0
Cập Nhật Lần Cuối 2015-10-09
Ngày Phát Hành 2015-10-09
Đánh Giá 3.57/5 Tổng số 7 Đánh Giá
Nhà Phát Triển xeno.be
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}