Tenafly GPA Calculator
This thing calculates your gpa.
Cos'è Tenafly GPA Calculator?
Tenafly GPA Calculator è un'estensione di Chrome sviluppata da pienote, e la sua funzione principale è "This thing calculates your gpa.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Tenafly GPA Calculator
Scarica i file di estensione Tenafly GPA Calculator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Calculate your gpa with one button, uses the Tenafly Grade Point Average scale, only tested with tenafly.k12.nj.us.
Informazioni di Base sull'Estensione
Nome | Tenafly GPA Calculator |
ID | hhibfahkdabfjmieobhafkglmleommja |
URL Ufficiale | https://chromewebstore.google.com/detail/tenafly-gpa-calculator/hhibfahkdabfjmieobhafkglmleommja |
Descrizione | This thing calculates your gpa. |
Dimensione del File | 43.37 KB |
Conteggio Installazioni | 19 |
Versione Corrente | 13.37 |
Ultimo Aggiornamento | 2016-12-19 |
Data di Pubblicazione | 2016-12-18 |
Valutazione | 4.67/5 Totale 3 Valutazioni |
Sviluppatore | pienote |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tenafly GPA Calculator", "description": "This thing calculates your gpa.", "version": "13.37", "content_scripts": [ { "matches": [ "https:\/\/parents.tenafly.k12.nj.us\/*" ], "js": [ "jquery.js", "background.js" ] } ], "background": { "scripts": [ "jquery.js", "background.js" ], "persistent": false }, "browser_action": { "default_icon": "icon128.png", "default_popup": "popup.html" }, "icons": { "128": "icon128.png", "16": "icon16.png", "48": "icon48.png" }, "permissions": [ "activeTab", "https:\/\/ajax.googleapis.com\/" ] } |