Twitter Mentionator

Now it's simpler than ever to mention your followers on Twitter!

Twitter Mentionator란 무엇입니까?

Twitter Mentionator은(는) paul.skertich에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Now it's simpler than ever to mention your followers on Twitter!"입니다.

확장 프로그램 스크린샷

Twitter Mentionator 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Are you sick and tired of manually mentioning your twitter followers? After using Mass Mentionator, you'll be surprised how easier it is to mention your followers! Within a couple of clicks of your mouse button, you can now copy and paste your recent or favorable followers. Give it a try, and you will find yourself loving this extension!

When you're logged into Twitter, click on the extension's icon and then load your followers list. It's that simple. Give it a try!

REPORT ANY BUGS TO [email protected]

** NOTE FROM DEVELOPER: 3/29/2021 - Project is no longer maintained. No future updates would be released. Sorry for the inconvenience. Great project, just a lot on my hands at the moment. There may be new Chrome extensions being released in the future.

Changes for v0.2

-- partial fix for duplicated followers.
-- UI Refresh button when first installed application. In case, followers weren't loaded.

Changes for v0.5

-- No more duplicated entries of followers.
-- UI make-over. No more "Copy" button.
-- UI Compose Message for easy and friendly use.

Changes for v0.5 - 0.5.5 

-- Automatically opens Global New Twitter Box and inserts personal message with selected mentions.
-- Utilizes chrome.storage.local only to store personal message and mentions. After inserting personal message and mentions inside Global New Twitter Box, it clears the data from storage.
-- Minor fixes to main popup UI. Nothing spectacular.

Changes for v0.5.6 

-- followers names are displayed instead of their twitter usernames. 
---- sometimes followers names displayed as null, but they're replaced with their twitter usernames. Working on a fix-around with this bug.
-- hideous popup scrollbar removed. 
-- workable donation button.
-- bug report feature. 

Known Issues for v0.5.6
-- going to twitter site activates extension. But going to your followers tab will show popup. Working on that as well.

Changes for v0.5.7 
-- should update extension automatically.

Changes for v0.6
-- 3 bar menu. More items will be placed in future.
-- "Load Your Followers" icon replaced "Refresh Tab" icon. This makes it easier and convenient. 
-- Bug Report taken off. Report bugs to [email protected]                    

확장 프로그램 기본 정보

이름 Twitter Mentionator Twitter Mentionator
ID cabbedeflmhbopcckhinonlideimgipi
공식 URL https://chromewebstore.google.com/detail/twitter-mentionator/cabbedeflmhbopcckhinonlideimgipi
설명 Now it's simpler than ever to mention your followers on Twitter!
파일 크기 201 KB
설치 횟수 33
현재 버전 0.6.0
최근 업데이트 2021-03-29
출시 날짜 2019-05-20
평점 2.67/5 총 3 개의 평점
개발자 paul.skertich
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitter Mentionator",
    "description": "Now it's simpler than ever to mention your followers on Twitter!",
    "short_name": "Twitter Mentionator",
    "version": "0.6.0",
    "page_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "jquery-3.3.1.js",
            "main.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "jquery-3.3.1.js",
                "script.js"
            ],
            "matches": [
                "*:\/\/twitter.com\/*"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage",
        "*:\/\/twitter.com\/*"
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'"
}