IMDB Bechdel ratings

Shows Bechdel ratings in IMDB pages

Что такое IMDB Bechdel ratings?

IMDB Bechdel ratings - это расширение Chrome, разработанное ollieglass, и его основная функция - "Shows Bechdel ratings in IMDB pages".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения IMDB Bechdel ratings

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

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

                        The Bechdel Test is a tongue-in-cheek benchmark for basic female content in movies. For a movie to pass, it must contain just one thing – a scene in which two or more named female characters have a conversation about anything at all besides men. Despite its simple criteria, the vast majority of Hollywood films - from Star Wars to Lord of the Rings - fail the test.

Next time you're looking up a movie on IMDB, this Chrome extension will show you if it passes the test.                    

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

Название IMDB Bechdel ratings IMDB Bechdel ratings
ID apihffhfamcklndjnmigpgaejbofpcme
Официальный URL https://chrome.google.com/webstore/detail/imdb-bechdel-ratings/apihffhfamcklndjnmigpgaejbofpcme
Описание Shows Bechdel ratings in IMDB pages
Размер файла 5.81 KB
Количество установок 19
Текущая Версия 1
Последнее Обновление 2015-05-21
Дата публикации 2015-05-21
Рейтинг 5.00/5 Всего 3 оценок
Разработчик ollieglass
Тип оплаты free
Официальный сайт расширения https://twitter.com/ollieglass
URL страницы помощи https://twitter.com/ollieglass
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IMDB Bechdel ratings",
    "description": "Shows Bechdel ratings in IMDB pages",
    "version": "1",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.imdb.com\/title\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "permissions": [
        "http:\/\/bechdeltest.com\/*",
        "tabs"
    ],
    "web_accessible_resources": [
        "pass.png",
        "fail.png"
    ]
}