Spaces:
Running
Running
File size: 1,956 Bytes
6bcb42f b8f7851 6bcb42f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
// This file is only used by pull.js to generate files. It is not used at runtime.
const addons = [
'save-to-google',
'cat-blocks',
'editor-devtools',
'find-bar',
'middle-click-popup',
'jump-to-def',
'editor-searchable-dropdowns',
'block-palette-icons',
'hide-flyout',
'mediarecorder',
'drag-drop',
'debugger',
'pause',
'mute-project',
'vol-slider',
'clones',
'mouse-pos',
'color-picker',
'remove-sprite-confirm',
'block-count',
'onion-skinning',
'paint-snap',
'default-costume-editor-color',
'bitmap-copy',
'2d-color-picker',
'better-img-uploads',
'pick-colors-from-stage',
'custom-block-shape',
'zebra-striping',
'editor-theme3',
'custom-block-text',
'editor-colored-context-menus',
'editor-stage-left',
'editor-buttons-reverse-order',
'variable-manager',
'search-sprites',
'sprite-properties',
'gamepad',
'editor-sounds',
'folders',
'block-switching',
'load-extensions',
'custom-zoom',
'initialise-sprite-position',
'blocks2image',
'remove-curved-stage-border',
'transparent-orphans',
'paint-by-default',
'block-cherry-picking',
'hide-new-variables',
'editor-extra-keys',
'hide-delete-button',
'no-script-bumping',
'disable-stage-drag-select',
'move-to-top-bottom',
'disable-paste-offset',
'block-duplicate',
'swap-local-global',
'editor-comment-previews',
'columns',
'number-pad',
'script-snap',
'fullscreen',
'hide-stage',
'tw-straighten-comments',
'tw-remove-backpack',
'tw-remove-feedback',
'tw-disable-cloud-variables'
];
const newAddons = [
'vol-slider',
'number-pad',
'rename-broadcasts',
'sprite-properties',
'paint-snap',
"editor-block-chomping",
];
// eslint-disable-next-line import/no-commonjs
module.exports = {
addons,
newAddons
};
|