Search User Tweets
Adds a new search box so you can easily search tweets from that user's timeline.
Search User Tweets क्या है?
Search User Tweets jmwhittaker द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a new search box so you can easily search tweets from that user's timeline."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Search User Tweets एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Adds a new search box on a Twitter user page (example: https://twitter.com/jmwhittaker) underneath the follow & message buttons. The search will return results from that users timeline only. Hand for finding a tweet by a specific user that you have forgotten, or even seeing tweets on a certain topic or hashtag from a specific user. Even works on your own profile page :)
एक्सटेंशन की मूल जानकारी
नाम | Search User Tweets |
ID | ijnjbefcmdhoghgihgpiogpkhgmncdhh |
आधिकारिक URL | https://chromewebstore.google.com/detail/search-user-tweets/ijnjbefcmdhoghgihgpiogpkhgmncdhh |
विवरण | Adds a new search box so you can easily search tweets from that user's timeline. |
फ़ाइल का आकार | 12.93 KB |
स्थापना संख्या | 21 |
वर्तमान संस्करण | 0.1 |
अंतिम अपडेट | 2015-09-17 |
प्रकाशन तिथि | 2015-09-17 |
रेटिंग | 1.00/5 कुल 1 रेटिंग्स |
डेवलपर | jmwhittaker |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Search User Tweets", "version": "0.1", "description": "Adds a new search box so you can easily search tweets from that user's timeline.", "author": "James Whittaker", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/**" ], "css": [ "styles.css" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ] } } |