uploaded new name

This commit is contained in:
2025-09-22 20:34:15 +03:00
parent dd1772222d
commit 921ea43834
14 changed files with 180 additions and 64 deletions

View File

@@ -1,5 +1,5 @@
/**
* Quality Recticel Print Service - Background Script
* Quality Label Printing Service - Background Script
* Handles communication between web pages and Windows print service
*/
@@ -16,7 +16,7 @@ let serviceStatus = {
// Initialize extension
chrome.runtime.onInstalled.addListener(() => {
console.log('Quality Recticel Print Service extension installed');
console.log('Quality Label Printing Service extension installed');
checkServiceStatus();
// Set up periodic service check
@@ -160,7 +160,7 @@ async function handlePrintPDF(printData) {
chrome.notifications.create({
type: 'basic',
iconUrl: 'icons/icon48.png',
title: 'Quality Recticel Print Service',
title: 'Quality Label Printing Service',
message: 'PDF printed successfully'
});
@@ -176,7 +176,7 @@ async function handlePrintPDF(printData) {
chrome.notifications.create({
type: 'basic',
iconUrl: 'icons/icon48.png',
title: 'Quality Recticel Print Service',
title: 'Quality Label Printing Service',
message: `Print failed: ${error.message}`
});