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.”。
扩展截图
下载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.
扩展基本信息
名称 | |
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" ] } ] } |