Random Simpsons

This extension provides a link to a random simpsons episode

Cos'è Random Simpsons?

Random Simpsons è un'estensione di Chrome sviluppata da ry525525, e la sua funzione principale è "This extension provides a link to a random simpsons episode".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Random Simpsons

Scarica i file di estensione Random Simpsons 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

                        Are you bad at making tough choices? Are you a big fan of the Simpsons? Do you need to kill some time? Well worry no more! Thanks to the Random Simpsons Chrome Extension you are only a click away from watching a great, memorable Simpsons episode.  

The code is open source and can be found on my github: https://github.com/RyanYoung25/randomSimpsonsChromeExt I do the html scraping on a google app engine app that I wrote in python and make a post call from the extension to get the url for the episode.                    

Informazioni di Base sull'Estensione

Nome Random Simpsons Random Simpsons
ID cgkceclbbikckocloicgdnoekbibaphi
URL Ufficiale https://chrome.google.com/webstore/detail/random-simpsons/cgkceclbbikckocloicgdnoekbibaphi
Descrizione This extension provides a link to a random simpsons episode
Dimensione del File 61.5 KB
Conteggio Installazioni 86
Versione Corrente 1.0
Ultimo Aggiornamento 2015-06-16
Data di Pubblicazione 2015-06-16
Valutazione 3.22/5 Totale 9 Valutazioni
Sviluppatore ry525525
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Random Simpsons",
    "description": "This extension provides a link to a random simpsons episode",
    "version": "1.0",
    "icons": {
        "16": ".\/icons\/icon16.png",
        "48": ".\/icons\/icon48.png",
        "128": ".\/icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": ".\/icons\/icon.png",
        "default_popup": ".\/pages\/popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ]
}