ActionScript 3.0 Search

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

Qu'est-ce que ActionScript 3.0 Search ?

ActionScript 3.0 Search est une extension Chrome développée par xeno.be, et sa fonction principale est "Adds support to the omnibox to search the AS3 reference docs.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension ActionScript 3.0 Search

Téléchargez les fichiers d'extension ActionScript 3.0 Search au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom ActionScript 3.0 Search ActionScript 3.0 Search
ID epbimhhenalihknndiglmjaehfpifaeg
URL Officiel https://chromewebstore.google.com/detail/actionscript-30-search/epbimhhenalihknndiglmjaehfpifaeg
Description Adds support to the omnibox to search the AS3 reference docs.
Taille du Fichier 139 KB
Nombre d'Installations 5,156
Version Actuelle 3.1.0
Dernière Mise à Jour 2015-10-09
Date de Publication 2015-10-09
Évaluation 3.57/5 Total 7 Évaluations
Développeur xeno.be
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
}