Skip to content

Instantly share code, notes, and snippets.

@doodybaba
doodybaba / sw.js
Last active March 10, 2026 17:25
Service Worker
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 => {
@doodybaba
doodybaba / Manifest.json
Created March 10, 2026 15:28
Blogger PWA Manifest
{
"name": "معرض زين لشراء الأثاث المستعمل بالمنصورة",
"short_name": "معرض زين",
"description": "نشتري الأثاث المستعمل والأجهزة الكهربائية بأعلى سعر في المنصورة والدقهلية",
"start_url": "/?utm_source=pwa",
"display": "standalone",
"background_color": "#ffffff",
"theme_color": "#007bff",
"orientation": "portrait",
"icons": [