Meetup Tools

Enhancments for meetup.com

Meetup Tools란 무엇입니까?

Meetup Tools은(는) guya.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enhancments for meetup.com"입니다.

확장 프로그램 스크린샷

screenshot

Meetup Tools 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Meetup Tools is a small extension that is meant to enhance your meetup.com experience, and mainly does 3 things:
1. It shows you your place in the queue while on the waiting list.
2. It shows you your status for every meetup.
3. It takes you to meetup.com with one click.

Meetup.com Waitlists are almost always first come first serve.
When you are on the waitlist, Meetup.com doesn't tell what is your position in the queue.
This extension will tell you where you are in the queue so you'll be able to better estimate your chances of getting in.
Browse any meetup and it'll show you your current status.
If you are not in the meetup.com website, clicking the icon will take you there.

:)                    

확장 프로그램 기본 정보

이름 Meetup Tools Meetup Tools
ID okfdhdfbdobnclkegpfpepihhbbmapcj
공식 URL https://chrome.google.com/webstore/detail/meetup-tools/okfdhdfbdobnclkegpfpepihhbbmapcj
설명 Enhancments for meetup.com
파일 크기 60.96 KB
설치 횟수 200
현재 버전 1.0.2
최근 업데이트 2018-04-15
출시 날짜 2018-04-15
평점 3.00/5 총 5 개의 평점
개발자 guya.net
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Meetup Tools",
    "version": "1.0.2",
    "description": "Enhancments for meetup.com",
    "background": {
        "scripts": [
            "meetup.js"
        ]
    },
    "permissions": [
        "*:\/\/*.meetup.com\/*",
        "webNavigation",
        "tabs",
        "notifications"
    ],
    "browser_action": {
        "default_icon": "logo_19.png"
    },
    "web_accessible_resources": [
        "logo_48.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.meetup.com\/*"
            ],
            "js": [
                "jquery-1.10.2.min.js",
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "icons": {
        "48": "logo_48.png",
        "128": "logo_128.png"
    },
    "manifest_version": 2
}