IMDB Bechdel ratings

Shows Bechdel ratings in IMDB pages

Hvad er IMDB Bechdel ratings?

IMDB Bechdel ratings er en Chrome-udvidelse udviklet af ollieglass, og dens hovedfunktion er "Shows Bechdel ratings in IMDB pages".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot
screenshot

Download IMDB Bechdel ratings-udvidelses-CRX-fil

Download IMDB Bechdel ratings-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn IMDB Bechdel ratings IMDB Bechdel ratings
ID apihffhfamcklndjnmigpgaejbofpcme
Officiel URL https://chrome.google.com/webstore/detail/imdb-bechdel-ratings/apihffhfamcklndjnmigpgaejbofpcme
Beskrivelse Shows Bechdel ratings in IMDB pages
Filstørrelse 5.81 KB
Antal Installationer 19
Nuværende Version 1
Senest Opdateret 2015-05-21
Udgivelsesdato 2015-05-21
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler ollieglass
Betalingsmetode free
Udvidelseswebsted https://twitter.com/ollieglass
Hjælpeside-URL https://twitter.com/ollieglass
Understøttede Sprog 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"
    ]
}