IMDB Bechdel ratings

Shows Bechdel ratings in IMDB pages

Co to jest IMDB Bechdel ratings?

IMDB Bechdel ratings to rozszerzenie Chrome opracowane przez ollieglass, a jego główną funkcją jest „Shows Bechdel ratings in IMDB pages”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia IMDB Bechdel ratings

Pobierz pliki rozszerzeń IMDB Bechdel 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 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.                    

Podstawowe informacje o rozszerzeniu

Nazwa IMDB Bechdel ratings IMDB Bechdel ratings
ID apihffhfamcklndjnmigpgaejbofpcme
Oficjalny URL https://chrome.google.com/webstore/detail/imdb-bechdel-ratings/apihffhfamcklndjnmigpgaejbofpcme
Opis Shows Bechdel ratings in IMDB pages
Rozmiar pliku 5.81 KB
Liczba instalacji 19
Aktualna Wersja 1
Ostatnia Aktualizacja 2015-05-21
Data Publikacji 2015-05-21
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper ollieglass
Typ Płatności free
Strona Rozszerzenia https://twitter.com/ollieglass
Adres URL Strony Pomocy https://twitter.com/ollieglass
Obsługiwane Języki 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"
    ]
}