FIRE Speech Code Ratings

Get the speech code rating by navigating to a college's website.

¿Qué es FIRE Speech Code Ratings?

FIRE Speech Code Ratings es una extensión de Chrome desarrollada por https://thefire.org, y su función principal es "Get the speech code rating by navigating to a college's website.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión FIRE Speech Code Ratings

Descarga archivos de extensión FIRE Speech Code Ratings en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        The Foundation for Individual Rights in Education (FIRE) is a nonpartisan, nonprofit organization dedicated to defending liberty, freedom of speech, due process, academic freedom, legal equality, and freedom of conscience on America’s college campuses. The FIRE Speech Code Ratings extension connects to FIRE's Spotlight Database: FIRE's rating system for college and university speech codes. By navigating to a college or university website, a notification will appear if that college is listed in the Spotlight Database. Users have the option to quiet the notifications and can still check the rating by clicking the extension icon.                    

Información Básica de la Extensión

Nombre FIRE Speech Code Ratings FIRE Speech Code Ratings
ID jddllneonjfnghkjhiklkkpkjepogfgc
URL Oficial https://chromewebstore.google.com/detail/fire-speech-code-ratings/jddllneonjfnghkjhiklkkpkjepogfgc
Descripción Get the speech code rating by navigating to a college's website.
Tamaño del Archivo 590 KB
Cantidad de Instalaciones 15
Versión Actual 1.2
Última Actualización 2018-03-02
Fecha de Publicación 2018-03-02
Calificación 2.00/5 Total de 1 Calificaciones
Desarrollador https://thefire.org
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://www.fire-mail.info/fire-spotlight/docs/chrome-spotlight-extension-docs.html
URL de la Página de Ayuda http://www.fire-mail.info/fire-spotlight/docs/chrome-spotlight-extension-docs.html
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FIRE Speech Code Ratings",
    "short_name": "speechcodes",
    "description": "Get the speech code rating by navigating to a college's website.",
    "version": "1.2",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "options.js"
            ]
        }
    ],
    "icons": {
        "16": "img\/red\/red-light-16.png",
        "48": "img\/red\/red-light-48.png",
        "128": "img\/red\/red-light-128.png"
    },
    "browser_action": {
        "default_popup": "spotlight.html",
        "default_title": "FIRE Speech Code Ratings"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "tabs",
        "activeTab",
        "https:\/\/www.fire-mail.info\/fire-spotlight\/",
        "notifications",
        "storage"
    ]
}