List Builder for Twitter

Quickly build Twitter lists from any timeline view.

List Builder for Twitter란 무엇입니까?

List Builder for Twitter은(는) https://www.electoralhq.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly build Twitter lists from any timeline view."입니다.

확장 프로그램 스크린샷

screenshot

List Builder for Twitter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
            ]
        }
    ]
}