IMDB Improver
This adds the user rating beside the episode title for quick reference. Enjoy! I'll add more soon!
IMDB Improver क्या है?
IMDB Improver http://www.evanbrynne.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This adds the user rating beside the episode title for quick reference. Enjoy! I'll add more soon!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में IMDB Improver एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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!
एक्सटेंशन की मूल जानकारी
नाम | |
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" ] } } |