feat: add QR Scanner tool with history, export, persistence and fullscreen support

This commit is contained in:
2026-02-27 17:00:11 +00:00
parent fd23860bcf
commit 839a98a658
6 changed files with 662 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ import Main from '../components/Main.vue'
import Passwords from '../components/tools/Passwords.vue'
import ClipboardSniffer from '../components/tools/ClipboardSniffer.vue'
import UrlCleaner from '../components/tools/UrlCleaner.vue'
import QrScanner from '../components/tools/QrScanner.vue'
import PrivacyPolicy from '../views/PrivacyPolicy.vue'
const routes = [
@@ -26,6 +27,11 @@ const routes = [
name: 'UrlCleaner',
component: UrlCleaner
},
{
path: '/qr-scanner',
name: 'QrScanner',
component: QrScanner
},
{
path: '/extension-privacy-policy',
name: 'PrivacyPolicy',