ultrawidify/src/ext/conf/ActionList.js

240 lines
4.9 KiB
JavaScript
Raw Normal View History

2019-01-20 22:59:06 +01:00
import VideoAlignment from '../../common/enums/video-alignment.enum';
import Stretch from '../../common/enums/stretch.enum';
import ExtensionMode from '../../common/enums/extension-mode.enum';
2019-03-10 23:27:50 +01:00
import AspectRatio from '../../common/enums/aspect-ratio.enum';
import CropModePersistence from '../../common/enums/crop-mode-persistence.enum';
2019-01-20 22:59:06 +01:00
var ActionList = {
'set-ar': {
name: 'Set aspect ratio',
args: [{
name: 'Automatic',
2019-03-10 23:27:50 +01:00
arg: AspectRatio.Automatic,
},{
name: 'Fit width',
2019-03-10 23:27:50 +01:00
arg: AspectRatio.FitWidth,
},{
name: 'Fit height',
2019-03-10 23:27:50 +01:00
arg: AspectRatio.FitHeight,
},{
name: 'Reset',
2019-03-10 23:27:50 +01:00
arg: AspectRatio.Reset,
},{
2019-03-10 23:27:50 +01:00
name: 'Manually specify ratio',
arg: AspectRatio.Fixed,
customArg: true,
hintHTML: '',
}],
scopes: {
global: false,
site: false,
page: true,
}
},
'set-ar-persistence': {
name: 'Set crop mode persistence',
args: [{
name: 'Never persist',
arg: CropModePersistence.Disabled,
},{
name: 'While on page',
arg: CropModePersistence.UntilPageReload,
},{
name: 'Current session',
arg: CropModePersistence.CurrentSession,
},{
name: 'Always persist',
arg: CropModePersistence.Forever,
}, {
name: 'Default',
arg: CropModePersistence.Default,
scopes: {
site: true,
}
}],
scopes: {
global: true,
site: true,
page: false,
}
},
2019-01-20 22:59:06 +01:00
'set-stretch': {
name: 'Set stretch',
args: [{
name: 'Normal',
2019-01-20 22:59:06 +01:00
arg: Stretch.NoStretch
},{
name: 'Basic',
2019-01-20 22:59:06 +01:00
arg: Stretch.Basic,
},{
name: 'Hybrid',
2019-01-20 22:59:06 +01:00
arg: Stretch.Hybrid,
},{
name: 'Thin borders',
2019-01-20 22:59:06 +01:00
arg: Stretch.Conditional,
},{
name: 'Default',
arg: Stretch.Default,
scopes: {
site: true
}
}],
scopes: {
global: true,
site: true,
page: true,
}
},
'set-alignment': {
name: 'Set video alignment',
args: [{
name: 'Left',
2019-01-20 22:59:06 +01:00
arg: VideoAlignment.Left,
},{
name: 'Center',
2019-01-20 22:59:06 +01:00
arg: VideoAlignment.Center,
},{
name: 'Right',
2019-01-20 22:59:06 +01:00
arg: VideoAlignment.Right
},{
name: 'Default',
2019-01-20 22:59:06 +01:00
arg: VideoAlignment.Default,
scopes: {
site: true,
}
}],
scopes: {
global: true,
site: true,
page: true,
}
},
'pan': {
name: 'Pan',
args: [{
name: '',
arg: 'toggle'
}],
scopes: {
page: true,
}
},
'toggle-pan': {
name: 'Toggle panning mode',
args: [{
name: 'Toggle',
arg: 'toggle',
},{
name: 'Enable',
arg: 'enable',
},{
name: 'Disable',
arg: 'disable'
}],
scopes: {
page: true
}
},
2019-01-03 02:07:16 +01:00
'change-zoom': {
name: 'Zoom',
args: [{
name: 'Zoom level increase/decrease',
customArg: true,
hintHTML: '<small>Positive values zoom in, negative values zoom out. Increases/decreases are logarithmic: value of \'1\' will double the zoom, value of \'-1\' will halve it.</small>'
}],
scopes: {
page: true,
}
},
2019-01-03 02:07:16 +01:00
'set-zoom': {
name: 'Set zoom level',
args: [{
name: 'Zoom level increase/decrease',
customArg: true,
hintHTML: '<small>Examples: 0.5 sets zoom to 50%, 1 sets zoom to 100%, 2 sets zoom to 200%. Don\'t use negative values unless you want to experience Australian youtube.</small>'
}],
scopes: {
page: true,
}
},
'set-extension-mode': {
name: 'Set extension mode',
args: [{
name: 'Enable',
2019-01-20 22:59:06 +01:00
arg: ExtensionMode.Enabled,
},{
name: 'On whitelisted only',
2019-01-20 22:59:06 +01:00
arg: ExtensionMode.Whitelist,
scopes: {
global: true,
}
},{
name: 'Default',
2019-01-20 22:59:06 +01:00
arg: ExtensionMode.Default,
scopes: {
page: true,
}
},{
name: 'Disable',
2019-01-20 22:59:06 +01:00
arg: ExtensionMode.Default
}],
scopes: {
global: true,
site: true,
}
},
'set-autoar-mode': {
name: 'Set automatic aspect ratio detection mode',
args: [{
name: 'Enable',
2019-01-20 22:59:06 +01:00
arg: ExtensionMode.Enabled,
},{
name: 'On whitelisted only',
2019-01-20 22:59:06 +01:00
arg: ExtensionMode.Whitelist,
scopes: {
global: true,
}
},{
name: 'Default',
2019-01-20 22:59:06 +01:00
arg: ExtensionMode.Default,
scopes: {
page: true,
}
},{
name: 'Disable',
2019-01-20 22:59:06 +01:00
arg: ExtensionMode.Disabled
}],
scopes: {
global: true,
site: true,
}
2019-06-02 23:54:32 +02:00
},
'set-keyboard': {
name: 'Keyboard shortcuts',
args: [{
name: 'Enable',
arg: ExtensionMode.Enabled,
},{
name: 'On whitelisted only',
arg: ExtensionMode.Whitelist,
scopes: {
global: true,
}
},{
name: 'Default',
arg: ExtensionMode.Default,
scopes: {
page: true,
}
},{
name: 'Disable',
arg: ExtensionMode.Disabled
}],
scopes: {
global: true,
site: true,
}
}
};
export default ActionList;