Объясните как это работает? Откуда берётся сигнал?
--user-data-dir=DIR
Specifies the directory that user data (your "profile") is kept
in. Defaults to ~/.config/chromium . Separate instances of
Chromium must use separate user data directories; repeated invo‐
cations of chromium-browser will reuse an existing process for a
given user data directory.
--profile <path> Start with profile at <path>.
myObject = {} // пустой объект
myObject.name = 'Вася' // добавим объекту свойство
myObject.sayHello = function(){ // добавим метод объекта
console.log('Hello ' + myObject.name) // обращение к свойству
}
// просто отдельная функция
function sayGoodbye(){
console.log('goodbye')
}