This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const IMAGE_CACHE_NAME = 'blogger-images-v1'; | |
| const NINETY_DAYS = 90 * 24 * 60 * 60; // ثواني الـ 90 يوم | |
| self.addEventListener('fetch', event => { | |
| const url = new URL(event.request.url); | |
| // استهداف صور بلوجر وجوجل فقط | |
| if (url.hostname.includes('googleusercontent.com')) { | |
| event.respondWith( | |
| caches.open(IMAGE_CACHE_NAME).then(cache => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "معرض زين لشراء الأثاث المستعمل بالمنصورة", | |
| "short_name": "معرض زين", | |
| "description": "نشتري الأثاث المستعمل والأجهزة الكهربائية بأعلى سعر في المنصورة والدقهلية", | |
| "start_url": "/?utm_source=pwa", | |
| "display": "standalone", | |
| "background_color": "#ffffff", | |
| "theme_color": "#007bff", | |
| "orientation": "portrait", | |
| "icons": [ |