Paridae
Make twitter.com more responsive (previously named Responsive Twitter)
Paridae क्या है?
Paridae donnierayjones द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Make twitter.com more responsive (previously named Responsive Twitter)"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Paridae एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Have a feature request or bug report? Find me on twitter: @hidrj Paridae is a family of birds which (according to Wikipedia) are highly adaptable, noisy, and social. I thought this bird characteristically describes the aim of this extension. To make a noisy, social twitter.com more adaptable to screen sizes (known in web circles as "responsive design"). This extension used to be named "Responsive Twitter", but I've been asked to change the name. Most Recent Changes: * Better support for multi-photo tweets * Styles updates for new profile layout Features: * Shrinks twitter.com to fit in almost any width you give it. * Disables jQuery animations so that it will feel quicker. * Provides a browser icon/button to open twitter.com in a chrome-less window (i.e. no toolbars) and will remember the window size/position upon closing. * Opens clicked links in the background. * Open links with keyboard shortcut o. * Removes hover effects when the window is really small. Favors keyboard shortcuts over mouse interaction. * Omnibox (i.e. addressbar) support: Type "@" then hit tab. - Searches Twitter - Use @username to go to a user - Use single letter keyboard shortcuts: o, h, c, a, r, d, f, m Full changelog available as git history: https://github.com/donnierayjones/responsive-twitter/commits/master
एक्सटेंशन की मूल जानकारी
नाम | Paridae |
ID | mlfldkpapihighaigbbaaicpjoddlhhf |
आधिकारिक URL | https://chromewebstore.google.com/detail/paridae/mlfldkpapihighaigbbaaicpjoddlhhf |
विवरण | Make twitter.com more responsive (previously named Responsive Twitter) |
फ़ाइल का आकार | 68.24 KB |
स्थापना संख्या | 184 |
वर्तमान संस्करण | 0.8.7 |
अंतिम अपडेट | 2014-06-07 |
प्रकाशन तिथि | 2014-06-07 |
रेटिंग | 4.10/5 कुल 20 रेटिंग्स |
डेवलपर | donnierayjones |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/donnierayjones/paridae#make-twitter-responsive |
सहायता पृष्ठ URL | https://github.com/donnierayjones/paridae/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Paridae", "short_name": "Paridae", "version": "0.8.7", "manifest_version": 2, "description": "Make twitter.com more responsive (previously named Responsive Twitter)", "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "css": [ "styles.css" ], "js": [ "jquery.js", "script.js" ] } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "omnibox": { "keyword": "@" }, "browser_action": { "default_icon": "icon48.png" } } |