Pingry Today

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

Pingry Today là gì?

Pingry Today là một tiện ích mở rộng Chrome được phát triển bởi The Pingry School, và tính năng chính của nó là "A layout for your new tab page that fills you in on Pingry news and information.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Pingry Today

Tải xuống các tệp mở rộng Pingry Today dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Pingry Today Pingry Today
ID daeipplkfnjcahobfabafnngfklkiloc
URL Chính Thức https://chromewebstore.google.com/detail/pingry-today/daeipplkfnjcahobfabafnngfklkiloc
Mô tả A layout for your new tab page that fills you in on Pingry news and information.
Kích Thước Tệp 64.04 MB
Số Lần Cài Đặt 115
Phiên Bản Hiện Tại 5.5
Cập Nhật Lần Cuối 2017-09-12
Ngày Phát Hành 2017-09-12
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển The Pingry School
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}