-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
98 lines (86 loc) · 3 KB
/
script.js
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
89
90
91
92
93
94
95
96
97
98
const electron = require('electron');
const app = electron.app;
app.on('ready', function () {
const mainWindow = new electron.BrowserWindow({
title: "Youtube",
width: 1024,
height: 768,
titleBarStyle: 'hidden',
webPreferences: {
nodeIntegration: true,
webSecurity: true,
plugins: true,
enableRemoteModule: true,
webviewTag: true
}
});
mainWindow.loadURL('file://' + __dirname + '/index.html', {
userAgent: 'Chrome'
});
mainWindow.on('ready-to-show', function () {
mainWindow.show();
mainWindow.focus();
});
});
// const {app, Menu, BrowserWindow} = require('electron');
// const {is} = require('electron-util');
// const path = require('path');
// const fs = require('fs');
// const appMenu = require('./menu');
// let mainWindow;
// function createWindow() {
// const win = new BrowserWindow({
// title: "Youtube",
// show: false,
// width: 1024,
// height: 768,
// //icon: is.linux ? path.join(__dirname, 'media', 'icon.png') : undefined,
// titleBarStyle: 'hidden',
// webPreferences:{
// preload: path.join(__dirname, 'browser.js'),
// //nativeWindowOpen: true,
// //contextIsolation: true,
// nodeIntegration: false,
// webSecurity: true,
// plugins: true,
// enableRemoteModule: true
// }
// });
// win.loadURL('https://youtube.com', {
// userAgent: 'Chrome'
// });
// win.on('closed', function () {
// mainWindow = null
// })
// return win;
// }
// app.on('ready', function () {
// Menu.setApplicationMenu(appMenu);
// mainWindow = createWindow();
// //mainWindow.webContents.openDevTools();
// const page = mainWindow.webContents;
// page.on('dom-ready', function () {
// page.insertCSS(fs.readFileSync(path.join(__dirname, 'browser.css'), 'utf8'));
// mainWindow.show();
// var injectJs = `var b = document.createElement('button');
// b.classList.add('yt-icon-button');
// b.style.width = '30px';
// b.style.height = '30px';
// b.innerHTML = '<svg viewBox="0 0 24 24" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope iron-icon" style="pointer-events: none; display: block; width: 24; height: 24;"><g class="style-scope iron-icon"><path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z" class="style-scope iron-icon"></path></g></svg>'
// b.onclick = function() { window.history.back() };
// document.getElementById('center').prepend(b)`
// mainWindow.webContents.executeJavaScript(injectJs, function (result) {
// console.log('back button injected!')
// });
// });
// });
// app.on('window-all-closed', function () {
// if (process.platform !== 'darwin') {
// app.quit()
// }
// });
// app.on('activate', function () {
// if (mainWindow === null) {
// mainWindow = createWindow()
// }
// });