FIRE Speech Code Ratings

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

Что такое FIRE Speech Code Ratings?

FIRE Speech Code Ratings - это расширение Chrome, разработанное https://thefire.org, и его основная функция - "Get the speech code rating by navigating to a college's website.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения FIRE Speech Code Ratings

Скачайте файлы расширений FIRE Speech Code Ratings в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название FIRE Speech Code Ratings FIRE Speech Code Ratings
ID jddllneonjfnghkjhiklkkpkjepogfgc
Официальный URL https://chromewebstore.google.com/detail/fire-speech-code-ratings/jddllneonjfnghkjhiklkkpkjepogfgc
Описание Get the speech code rating by navigating to a college's website.
Размер файла 590 KB
Количество установок 15
Текущая Версия 1.2
Последнее Обновление 2018-03-02
Дата публикации 2018-03-02
Рейтинг 2.00/5 Всего 1 оценок
Разработчик https://thefire.org
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://www.fire-mail.info/fire-spotlight/docs/chrome-spotlight-extension-docs.html
URL страницы помощи http://www.fire-mail.info/fire-spotlight/docs/chrome-spotlight-extension-docs.html
Поддерживаемые языки 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"
    ]
}