Notify by Script

Extension for setting notifications that prepared by scripts.

ما هو Notify by Script؟

Notify by Script هو إضافة Chrome تم تطويرها بواسطة expercise Labs، والميزة الرئيسية لها هي "Extension for setting notifications that prepared by scripts.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Notify by Script

قم بتنزيل ملفات الامتداد Notify by Script بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Notify by Script is here to allow you setting alarms with custom scripted notifications.

For example information, visit https://github.com/ufuk/notify-by-script#notify-by-script                    

معلومات أساسية عن التمديد

الاسم Notify by Script Notify by Script
ID idgiodaooapkmmipoahlcmggofokcilg
عنوان URL الرسمي https://chromewebstore.google.com/detail/notify-by-script/idgiodaooapkmmipoahlcmggofokcilg
الوصف Extension for setting notifications that prepared by scripts.
حجم الملف 54.84 KB
عدد التثبيتات 32
النسخة الحالية 1.0.5
آخر تحديث 2022-02-21
تاريخ النشر 2017-01-17
تقييم 5.00/5 مجموع تقييمات 6
المطور expercise Labs
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة http://expercise.com
عنوان صفحة المساعدة https://github.com/ufuk/notify-by-script
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Notify by Script",
    "description": "Extension for setting notifications that prepared by scripts.",
    "version": "1.0.5",
    "author": "Ufuk Uzun",
    "icons": {
        "128": "icon-128.png",
        "256": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "main.js",
            "jquery.min.js"
        ]
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "alarms",
        "notifications",
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}