Blackboard Grade Calculator

Helps tallying grades on blackboard

O que é Blackboard Grade Calculator?

Blackboard Grade Calculator é uma extensão do Chrome desenvolvida por bcigdemoglu, e sua principal característica é "Helps tallying grades on blackboard".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Blackboard Grade Calculator

Baixe arquivos de extensão Blackboard Grade Calculator no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        SUMMARY:
Tallies grades in "Comments & Markups" section that has the format: "x/y [ grader explanation text here or empty ]" (e.g: "1/10 -9 No work shown", where x=1 and y=10 for this specific grading.)
Displays the tallied grades by modifying the "Comments & Markups" header as "Comments & Markups [sum(x)/sum(y)]"

---
BE CAREFUL!
Best practice is to define the score ratio at beginning of a comment.
For annotations that do not contain a grading, but a ratio as an explanation to a question must be observed carefully, since they would be calculated as well.
---

USAGE:
Simply download and install the extension to automatically view the sum ratio in the header.
Click on "Comments & Markups [sum(x)/sum(y)]" header or the "A+" icon on top-right of the chrome screen (as shown in the first screenshot) to view grader distribution (as shown in the second screenshot.)

CREDITS:
Thanks to Qiuyin Ren and Syed Hossain for the idea.                    

Informações Básicas da Extensão

Nome Blackboard Grade Calculator Blackboard Grade Calculator
ID idhajmemlipfeknjppgacbkkbagpgkmm
URL Oficial https://chromewebstore.google.com/detail/blackboard-grade-calculat/idhajmemlipfeknjppgacbkkbagpgkmm
Descrição Helps tallying grades on blackboard
Tamanho do Arquivo 1.02 MB
Contagem de Instalações 72
Versão Atual 1.4
Última Atualização 2017-02-17
Data de Publicação 2017-02-16
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor bcigdemoglu
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "name": "Blackboard Grade Calculator",
    "description": "Helps tallying grades on blackboard",
    "version": "1.4",
    "manifest_version": 2,
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/crocodoc.com\/view\/*"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon128.png"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}