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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A layout for your new tab page that fills you in on Pingry news and information."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Pingry Today एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } ] } |