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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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.
확장 프로그램 기본 정보
이름 | |
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" ] } ] } |