IMDB Improver

This adds the user rating beside the episode title for quick reference. Enjoy! I'll add more soon!

Τι είναι το IMDB Improver;

Το IMDB Improver είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://www.evanbrynne.com, και η κύρια λειτουργία του είναι "This adds the user rating beside the episode title for quick reference. Enjoy! I'll add more soon!".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης IMDB Improver

Λήψη αρχείων επέκτασης IMDB Improver σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension currently has a couple of features. Firstly, it adds ratings next to episode names when viewing seasons of TV shows. I find myself all the time looking to show a friend the best episodes from one series or another that I like. This makes it way easier to find those that are objectively good, as well as the ones I know I love. 

Also, via the options page it lets you manage the sections visible on tv/movie pages, letting you hide the side bar, the 'Contribute' section, or most of the others. This functionality will be periodically extended to include more sections as I discover them.

It was a fun little experiment that seemed like it'd be useful, and I've got some exciting new features coming soon!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα IMDB Improver IMDB Improver
ID keopalbcihdpcnkeocdncagjgodhjkfe
Επίσημο URL https://chrome.google.com/webstore/detail/imdb-improver/keopalbcihdpcnkeocdncagjgodhjkfe
Περιγραφή This adds the user rating beside the episode title for quick reference. Enjoy! I'll add more soon!
Μέγεθος Αρχείου 14.96 KB
Αριθμός Εγκαταστάσεων 50
Τρέχουσα Έκδοση 1.1.0
Τελευταία Ενημέρωση 2012-11-23
Ημερομηνία Δημοσίευσης 2012-11-23
Αξιολόγηση 4.00/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής http://www.evanbrynne.com
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://www.evanbrynne.com/projects/imdbchrome
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IMDB Improver",
    "manifest_version": 2,
    "version": "1.1.0",
    "permissions": [
        "storage"
    ],
    "description": "This adds the user rating beside the episode title for quick reference. Enjoy! I'll add more soon!",
    "page_action": {
        "default_icon": "imdb_48.png",
        "default_title": "Fixing your imdb!"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.imdb.com\/*\/episodes*",
                "https:\/\/www.imdb.com\/*\/episodes*"
            ],
            "js": [
                "add_scores.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        },
        {
            "matches": [
                "http:\/\/www.imdb.com\/*",
                "https:\/\/www.imdb.com\/*"
            ],
            "js": [
                "clean_page.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "imdb_16.png",
        "48": "imdb_48.png",
        "128": "imdb_128.png"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}