FIRE Speech Code Ratings

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

Was ist FIRE Speech Code Ratings?

FIRE Speech Code Ratings ist eine Chrome-Erweiterung, die von https://thefire.org entwickelt wurde, und ihr Hauptmerkmal ist "Get the speech code rating by navigating to a college's website.".

Erweiterungsscreenshots

screenshot

FIRE Speech Code Ratings-Erweiterungs-CRX-Datei herunterladen

Laden Sie FIRE Speech Code Ratings-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name FIRE Speech Code Ratings FIRE Speech Code Ratings
ID jddllneonjfnghkjhiklkkpkjepogfgc
Offizielle URL https://chromewebstore.google.com/detail/fire-speech-code-ratings/jddllneonjfnghkjhiklkkpkjepogfgc
Beschreibung Get the speech code rating by navigating to a college's website.
Dateigröße 590 KB
Installationsanzahl 15
Aktuelle Version 1.2
Letztes Update 2018-03-02
Veröffentlichungsdatum 2018-03-02
Bewertung 2.00/5 Insgesamt 1 Bewertungen
Entwickler https://thefire.org
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://www.fire-mail.info/fire-spotlight/docs/chrome-spotlight-extension-docs.html
Hilfeseite URL http://www.fire-mail.info/fire-spotlight/docs/chrome-spotlight-extension-docs.html
Unterstützte Sprachen 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"
    ]
}