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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds support to the omnibox to search the AS3 reference docs."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ActionScript 3.0 Search एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } |