Для создания скрипта для Tampermonkey, который будет автоматически добавлять "typing..." после нажатия клавиши Enter, следует создать новый пользовательский скрипт в расширении Tampermonkey и вставить следующий код:
```javascript
// ==UserScript==
// @name Typing Indicator
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Adds a "typing..." indicator after pressing Enter key
// @author Your Name
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
document.addEventListener('keydown', function(e) {
if (e.keyCode === 13) {
const typingIndicator = document.createElement('span');
typingIndicator.textContent = 'typing...';
document.body.appendChild(typingIndicator);
setTimeout(() => {
typingIndicator.remove();
}, 1500); // Remove typing indicator after 1.5 seconds
}
});
})();
```
Сохраните скрипт, обновите страницу и после нажатия клавиши Enter вы увидите "typing..." на странице на короткое время.