List Builder for Twitter
Quickly build Twitter lists from any timeline view.
List Builder for Twitter क्या है?
List Builder for Twitter https://www.electoralhq.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Quickly build Twitter lists from any timeline view."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में List Builder for Twitter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Quickly build Twitter lists with List Builder. Visible from any timeline view, you can select individual tweets or all on the screen and include the users into one of your lists. Great for events and conferences where you want to build list of people tweeting a hashtag to follow them after the event. More Twitter List tools @ https://www.electoralhq.com
एक्सटेंशन की मूल जानकारी
नाम | List Builder for Twitter |
ID | angdkjndobobaegbnhjaooedegkbibae |
आधिकारिक URL | https://chromewebstore.google.com/detail/list-builder-for-twitter/angdkjndobobaegbnhjaooedegkbibae |
विवरण | Quickly build Twitter lists from any timeline view. |
फ़ाइल का आकार | 50.12 KB |
स्थापना संख्या | 803 |
वर्तमान संस्करण | 0.4 |
अंतिम अपडेट | 2017-04-03 |
प्रकाशन तिथि | 2017-04-03 |
रेटिंग | 2.70/5 कुल 10 रेटिंग्स |
डेवलपर | https://www.electoralhq.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.electoralhq.com |
सहायता पृष्ठ URL | https://github.com/ryanwi/listbuilder-ext/issues |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "List Builder for Twitter", "description": "Quickly build Twitter lists from any timeline view.", "version": "0.4", "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "permissions": [ "declarativeContent" ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "page_action": { "default_icon": "images\/icon16.png", "default_title": "List Builder", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/*" ], "js": [ "js\/jquery-2.1.0.min.js", "js\/mutation-summary.js", "js\/main.js" ], "css": [ "css\/main.css" ] } ] } |