/*
* @title mirror
* @description flip mirror-reversed images; e.g. selfie
* @include http://*
* @include https://*
* @license MIT License https://opensource.org/licenses/MIT
* @javascript_url
*/
(() => {
'use strict';
document.body.appendChild(Object.assign(document.createElement('style'), {
// TBD toggle
textContent: `
img {
transform: scaleX(-1);
}
`,
}));
})();
/* from *dumb* phone */