Random Simpsons
This extension provides a link to a random simpsons episode
What is Random Simpsons?
Random Simpsons is a Chrome extension developed by ry525525, and its main feature is "This extension provides a link to a random simpsons episode".
Extension Screenshots
Download Random Simpsons Extension CRX File
Download Random Simpsons extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | cgkceclbbikckocloicgdnoekbibaphi |
Official URL | https://chrome.google.com/webstore/detail/random-simpsons/cgkceclbbikckocloicgdnoekbibaphi |
Description | This extension provides a link to a random simpsons episode |
File Size | 61.5 KB |
Installation Count | 86 |
Current Version | 1.0 |
Last Updated | 2015-06-16 |
Publish Date | 2015-06-16 |
Rating | 3.22/5 Total 9 Ratings |
Developer | ry525525 |
Payment Type | free |
Supported Languages | 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\/" ] } |