FIRE Speech Code Ratings

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

Co to jest FIRE Speech Code Ratings?

FIRE Speech Code Ratings to rozszerzenie Chrome opracowane przez https://thefire.org, a jego główną funkcją jest „Get the speech code rating by navigating to a college's website.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia FIRE Speech Code Ratings

Pobierz pliki rozszerzeń FIRE Speech Code Ratings w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa FIRE Speech Code Ratings FIRE Speech Code Ratings
ID jddllneonjfnghkjhiklkkpkjepogfgc
Oficjalny URL https://chromewebstore.google.com/detail/fire-speech-code-ratings/jddllneonjfnghkjhiklkkpkjepogfgc
Opis Get the speech code rating by navigating to a college's website.
Rozmiar pliku 590 KB
Liczba instalacji 15
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2018-03-02
Data Publikacji 2018-03-02
Ocena 2.00/5 Łącznie 1 Oceny
Deweloper https://thefire.org
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://www.fire-mail.info/fire-spotlight/docs/chrome-spotlight-extension-docs.html
Adres URL Strony Pomocy http://www.fire-mail.info/fire-spotlight/docs/chrome-spotlight-extension-docs.html
Obsługiwane Języki 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"
    ]
}