JavaEE API Search

Adds support to the omnibox to search the JavaEE API.

Vad är JavaEE API Search?

JavaEE API Search är en Chrome-tillägg utvecklad av xeno.be, och dess huvudfunktion är "Adds support to the omnibox to search the JavaEE API.".

Tilläggsskärmbilder

screenshot

Ladda ner JavaEE API Search-förlängningens CRX-fil

Ladda ner JavaEE API Search-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Simply type 'JEE ' 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 Oracle's online documentation.

Source from: 

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

Grundläggande Information om Tillägg

Namn JavaEE API Search JavaEE API Search
ID fdncdgdjflfnpbibedmlfdjafkinnfcl
Officiell webbadress https://chromewebstore.google.com/detail/javaee-api-search/fdncdgdjflfnpbibedmlfdjafkinnfcl
Beskrivning Adds support to the omnibox to search the JavaEE API.
Filstorlek 83.9 KB
Antal Installationer 5,453
Aktuell Version 3.0.0
Senast Uppdaterad 2015-10-09
Publiceringsdatum 2015-10-09
Betyg 4.18/5 Totalt 28 Betyg
Utvecklare xeno.be
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JavaEE API Search",
    "description": "Adds support to the omnibox to search the JavaEE API.",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "index.js",
            "String.js",
            "background.js"
        ]
    },
    "icons": {
        "128": "icons\/icon128.png",
        "32": "icons\/icon32.png",
        "16": "icons\/icon16.png"
    },
    "omnibox": {
        "keyword": "jee"
    },
    "permissions": [
        "tabs",
        "http:\/\/docs.oracle.com\/",
        "https:\/\/docs.oracle.com\/"
    ],
    "version": "3.0.0"
}