Skip to content

Commit 3ec388b

Browse files
committed
Fixed video maximize function.
Added a function to set the size of 100% or more when maximizing the video. In addition, it was possible to move by mouse drag when it was over 100%. Added a function to change the maximum size with Alt + mouse wheel. Fixed the pause function by clicking the video and set it to the default action. Fixed video page. Fixed video pop-up window. Bug fixes when changing the window size. Fixed bug when maximizing window. Changed the default bookmark page to Chrome standard. And add options to change. Fixed a bug that right-click menu does not work when extension is uninstalled. Fixed tab focus by mouse over. Fixed a bug in the location bar. Updated Electron to v6.1.5.
1 parent a063803 commit 3ec388b

File tree

29 files changed

+1430
-1173
lines changed

29 files changed

+1430
-1173
lines changed

ELECTRON_VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.0.12
1+
6.1.5

resource/defaultValue.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ const settingDefault = {
4444
fullscreenTransition: false,
4545
fullscreenTransitionKeep: false,
4646
autoDeleteDownloadList: false,
47+
useChromeBookmarkPage: true,
4748

4849
bindMarginFrame: isLinux ? 6 : 0,
4950
bindMarginTitle: isLinux ? 24 : 0,
@@ -372,13 +373,14 @@ const settingDefault = {
372373
audioSeekVideo: 10,
373374
keepAudioSeekValueVideo: false,
374375

375-
clickVideo: '',
376+
clickVideo: 'playOrPause',
376377
dbClickVideo: 'fullscreen',
377378

378379
wheelMinusVideo: 'rewind1',
379380
shiftWheelMinusVideo:'decSpeed',
380381
ctrlWheelMinusVideo: 'decreaseVolume',
381382
shiftCtrlWheelMinusVideo: 'frameBackStep',
383+
altWheelMinusVideo: 'zoomIn',
382384

383385
keyVideoPlayOrPause: ['MediaPlayPause','Space','k'],
384386
keyVideoFrameStep: ['.'],
@@ -402,13 +404,16 @@ const settingDefault = {
402404
keyVideoDecreaseVolume: ['/', 'VolumeDown'],
403405
keyVideoIncreaseVolume: ['*', 'VolumeUp'],
404406
keyVideoPlRepeat: ['R'],
407+
keyVideoZoomIn: ['/'],
408+
keyVideoZoomOut: ['\\'],
405409

406410
regexClickVideo:'.+',
407411
regexDbClickVideo:'.+',
408412
regexWheelMinusVideo:'.+',
409413
regexShiftWheelMinusVideo:'.+',
410414
regexCtrlWheelMinusVideo:'.+',
411415
regexShiftCtrlWheelMinusVideo:'.+',
416+
regexAltWheelMinusVideo:'.+',
412417

413418
regexKeyVideoPlayOrPause:'.+',
414419
regexKeyVideoFrameStep:'.+',

resource/extension/default/1.0_0/js/history.js

Lines changed: 496 additions & 409 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)