Better Bird
Makes Twitter a bit better
Better Bird क्या है?
Better Bird Matt Sherman द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes Twitter a bit better"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Better Bird एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This Google Chrome extension will: - Move content (timeline) to the left-hand side and the dashboard to the right for easier reading. - Expand shortened URL’s wherever possible, so you know where you are actually clicking. - Display your saved searches & @mentions. - Hide “Trends”, “Who to Follow”, and “#Discover” - Widen the layout and (optionally) use a serif font It’s open source, too: https://github.com/clipperhouse/BetterBird Uses the lovely Twitter icons from Design Junction.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | dolfbfbhjniibjlmpebhdkjanjlcnolp |
आधिकारिक URL | https://chromewebstore.google.com/detail/better-bird/dolfbfbhjniibjlmpebhdkjanjlcnolp |
विवरण | Makes Twitter a bit better |
फ़ाइल का आकार | 83.62 KB |
स्थापना संख्या | 201 |
वर्तमान संस्करण | 0.4.16 |
अंतिम अपडेट | 2013-05-05 |
प्रकाशन तिथि | 2013-05-05 |
रेटिंग | 4.56/5 कुल 16 रेटिंग्स |
डेवलपर | Matt Sherman |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Better Bird", "version": "0.4.16", "description": "Makes Twitter a bit better", "background": { "page": "background.html" }, "web_accessible_resources": [ "img\/twitter_16.png", "img\/twitter_32.png", "img\/twitter_32_notify.png" ], "icons": { "16": "img\/twitter_16.png", "32": "img\/twitter_32.png", "64": "img\/twitter_64.png", "128": "img\/twitter_128.png" }, "browser_action": { "default_icon": "img\/twitter_32.png" }, "content_scripts": [ { "matches": [ "*:\/\/twitter.com\/*" ], "css": [ "styles.css" ], "js": [ "js\/jquery-1.7.1.min.js", "js\/jquery.hoverIntent.min.js", "js\/utils.min.js", "js\/contentscript.js" ] } ], "permissions": [ "tabs", "*:\/\/twitter.com\/*", "*:\/\/search.twitter.com\/*", "*:\/\/api.twitter.com\/*" ] } |