Advertisement
Guest User

Extension_consoleLogger.json

a guest
Aug 11th, 2019
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.53 KB | None | 0 0
  1. {
  2.   "author": "@Bouh",
  3.   "description": "Showing info in console",
  4.   "extensionNamespace": "",
  5.   "fullName": "Console logger",
  6.   "name": "NewExtension",
  7.   "shortDescription": "",
  8.   "tags": "javascript, console, debugging",
  9.   "version": "0.0.1",
  10.   "eventsFunctions": [
  11.     {
  12.       "description": "Text showing in console",
  13.       "fullName": "console.log()",
  14.       "functionType": "Action",
  15.       "name": "Log",
  16.       "sentence": "console.log( _PARAM1_ )",
  17.       "events": [
  18.         {
  19.           "disabled": false,
  20.           "folded": false,
  21.           "type": "BuiltinCommonInstructions::Comment",
  22.           "color": {
  23.             "b": 109,
  24.             "g": 230,
  25.             "r": 255,
  26.             "textB": 0,
  27.             "textG": 0,
  28.             "textR": 0
  29.           },
  30.           "comment": "",
  31.           "comment2": ""
  32.         },
  33.         {
  34.           "disabled": false,
  35.           "folded": false,
  36.           "type": "BuiltinCommonInstructions::JsCode",
  37.           "inlineCode": "\nconst text_arg = eventsFunctionContext.getArgument(\"text_arg\");\nconsole.log(text_arg);",
  38.           "parameterObjects": "",
  39.           "useStrict": true
  40.         }
  41.       ],
  42.       "parameters": [
  43.         {
  44.           "codeOnly": false,
  45.           "defaultValue": "",
  46.           "description": "Text to display in console logger",
  47.           "name": "text_arg",
  48.           "optional": false,
  49.           "supplementaryInformation": "",
  50.           "type": "string"
  51.         }
  52.       ],
  53.       "objectGroups": []
  54.     }
  55.   ],
  56.   "eventsBasedBehaviors": []
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement