FIRE Speech Code Ratings

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

什么是FIRE Speech Code Ratings?

FIRE Speech Code Ratings是由https://thefire.org开发的Chrome扩展程序,该扩展的主要功能是“Get the speech code rating by navigating to a college's website.”。

扩展截图

screenshot

下载FIRE Speech Code Ratings扩展crx文件

下载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"
    ]
}