List Builder for Twitter
Quickly build Twitter lists from any timeline view.
ما هو List Builder for Twitter؟
List Builder for Twitter هو إضافة Chrome تم تطويرها بواسطة https://www.electoralhq.com، والميزة الرئيسية لها هي "Quickly build Twitter lists from any timeline view.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة List Builder for Twitter
قم بتنزيل ملفات الامتداد List Builder for Twitter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
عنوان صفحة المساعدة | 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" ] } ] } |