ActionScript 3.0 Search
Adds support to the omnibox to search the AS3 reference docs.
Was ist ActionScript 3.0 Search?
ActionScript 3.0 Search ist eine Chrome-Erweiterung, die von xeno.be entwickelt wurde, und ihr Hauptmerkmal ist "Adds support to the omnibox to search the AS3 reference docs.".
Erweiterungsscreenshots
ActionScript 3.0 Search-Erweiterungs-CRX-Datei herunterladen
Laden Sie ActionScript 3.0 Search-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | ActionScript 3.0 Search |
ID | epbimhhenalihknndiglmjaehfpifaeg |
Offizielle URL | https://chromewebstore.google.com/detail/actionscript-30-search/epbimhhenalihknndiglmjaehfpifaeg |
Beschreibung | Adds support to the omnibox to search the AS3 reference docs. |
Dateigröße | 139 KB |
Installationsanzahl | 5,156 |
Aktuelle Version | 3.1.0 |
Letztes Update | 2015-10-09 |
Veröffentlichungsdatum | 2015-10-09 |
Bewertung | 3.57/5 Insgesamt 7 Bewertungen |
Entwickler | xeno.be |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } |