IMDB Ratings Viewer

This extension will display the ratings of the selected text

Τι είναι το IMDB Ratings Viewer;

Το IMDB Ratings Viewer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ahmar.siddiqui, και η κύρια λειτουργία του είναι "This extension will display the ratings of the selected text".

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

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

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

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

                        Get IMDB Rating of a selected movie

> color coded according to the ratings
> will match keywords with similar words or small typos                    

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

Όνομα IMDB Ratings Viewer IMDB Ratings Viewer
ID mcmmjahiclndbfdkblfnopheledjibfl
Επίσημο URL https://chrome.google.com/webstore/detail/imdb-ratings-viewer/mcmmjahiclndbfdkblfnopheledjibfl
Περιγραφή This extension will display the ratings of the selected text
Μέγεθος Αρχείου 26.64 KB
Αριθμός Εγκαταστάσεων 55
Τρέχουσα Έκδοση 1.2
Τελευταία Ενημέρωση 2016-08-06
Ημερομηνία Δημοσίευσης 2016-08-06
Αξιολόγηση 2.60/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής ahmar.siddiqui
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "IMDB Ratings Viewer",
    "description": "This extension will display the ratings of the selected text",
    "version": "1.2",
    "browser_action": {
        "default_icon": {
            "19": "images\/19.png",
            "38": "images\/38.png"
        }
    },
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "unlimitedStorage",
        "activeTab",
        "background",
        "http:\/\/*\/",
        "https:\/\/*\/",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_end"
        }
    ]
}