Pingry Today

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

Pingry Todayとは何ですか?

Pingry TodayはThe Pingry Schoolによって開発されたChromeの拡張機能で、その主な機能は「A layout for your new tab page that fills you in on Pingry news and information.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Pingry Today拡張機能のCRXファイルをダウンロード

Pingry Today拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
            ]
        }
    ]
}