MALfo!

Get information from Reddit links to MyAnimeList without even visiting the site!

Cos'è MALfo!?

MALfo! è un'estensione di Chrome sviluppata da http://www.chrisgregori.co.uk, e la sua funzione principale è "Get information from Reddit links to MyAnimeList without even visiting the site!".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione MALfo!

Scarica i file di estensione MALfo! in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Get information from Reddit links to MyAnimeList without even visiting the site!

Ever frequent /r/Anime or /r/Animesuggest and don't want to follow links just to see what an anime's score, ranking, or popularity is? Well now you don't have to, any MyAnimeList anime page link you see on /r/Anime or /r/Animesuggest will automatically be updated to include the following information:

- Title
- Score
- Popularity
- Members
- Favorites

Please feel free to give reviews and feedback on the type of information you'd like to see appear or the style of the extension!                    

Informazioni di Base sull'Estensione

Nome MALfo! MALfo!
ID lnehgeipjejfchpiecclhnlgohmhilcc
URL Ufficiale https://chrome.google.com/webstore/detail/malfo/lnehgeipjejfchpiecclhnlgohmhilcc
Descrizione Get information from Reddit links to MyAnimeList without even visiting the site!
Dimensione del File 8.6 KB
Conteggio Installazioni 10
Versione Corrente 1.0
Ultimo Aggiornamento 2014-08-09
Data di Pubblicazione 2014-08-09
Valutazione 4.00/5 Totale 2 Valutazioni
Sviluppatore http://www.chrisgregori.co.uk
Tipo di Pagamento free
URL della Pagina di Aiuto https://docs.google.com/forms/d/13-bcm77YeIq_55EZ-yP4LdZMPRbq7yB6HIQd8Lmk8qg/viewform?usp=send_form
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MALfo!",
    "description": "Get information from Reddit links to MyAnimeList without even visiting the site!",
    "version": "1.0",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "128": "icon128.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "default_locale": "en",
    "permissions": [
        "http:\/\/www.myanimelist.net\/*",
        "http:\/\/www.myanimelist.net\/*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.reddit.com\/r\/Animesuggest\/*",
                "http:\/\/www.reddit.com\/r\/anime\/*",
                "http:\/\/myanimelist.net\/animelist\/*"
            ],
            "css": [
                "malfo.css"
            ],
            "js": [
                "malfo.js"
            ]
        }
    ]
}