Pingry Today

A layout for your new tab page that fills you in on Pingry news and information.

ما هو Pingry Today؟

Pingry Today هو إضافة Chrome تم تطويرها بواسطة The Pingry School، والميزة الرئيسية لها هي "A layout for your new tab page that fills you in on Pingry news and information.".

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

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Pingry Today

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

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

                        This Google Chrome Extension redesigns the New Tab page into an informative and functional layout for members of the Pingry School.

This extension will give you access to:

 - Upper School Announcements
 - Your Bookmarks
 - The Current Date and Time
 - The Pingry Upper School Letter Day
 - The Class Periods for the Day
 - The Daily Lunch Menu

While this extension will be keeping you informed, it also acts as an aesthetic display for your New Tab page with an assortment of Nature backgrounds and photos of the Pingry campus.                    

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

الاسم Pingry Today Pingry Today
ID daeipplkfnjcahobfabafnngfklkiloc
عنوان URL الرسمي https://chromewebstore.google.com/detail/pingry-today/daeipplkfnjcahobfabafnngfklkiloc
الوصف A layout for your new tab page that fills you in on Pingry news and information.
حجم الملف 64.04 MB
عدد التثبيتات 115
النسخة الحالية 5.5
آخر تحديث 2017-09-12
تاريخ النشر 2017-09-12
تقييم 5.00/5 مجموع تقييمات 5
المطور The Pingry School
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pingry Today",
    "short_name": "Pingry Today",
    "description": "A layout for your new tab page that fills you in on Pingry news and information.",
    "version": "5.5",
    "browser_action": {
        "default_title": "Pingry Today",
        "default_popup": "popup.html"
    },
    "chrome_url_overrides": {
        "newtab": "pie.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self'; object-src 'self';",
    "icons": {
        "128": "photos\/_standard\/PIE-128.png",
        "48": "photos\/_standard\/PIE-48.png",
        "16": "photos\/_standard\/PIE-16.png"
    },
    "permissions": [
        "activeTab",
        "bookmarks",
        "contextMenus",
        "cookies",
        "https:\/\/www.pingry.org\/*",
        "https:\/\/www.sagedining.com\/*",
        "http:\/\/localhost:8080\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost:8080\/*",
                "https:\/\/www.pingry.org\/*"
            ],
            "js": [
                "jquery.min.js",
                "background.js",
                "widget.js",
                "popup.js",
                "US_announcements.js",
                "bookmarks.js"
            ]
        }
    ]
}