Forumactif account switch

This extension was build to allow forumactif users to switch between accounts. You need to log at least once into each account.

Forumactif account switch란 무엇입니까?

Forumactif account switch은(는) https://forums-rpg.fr에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension was build to allow forumactif users to switch between accounts. You need to log at least once into each account."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Forumactif account switch 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension was build to allow all forumactif users to switch between their accounts in one mouse click, making the whole process easier and quicker. Users need to log at least once into each account to register them. This extension only works on forumactif domains such as forumactif.fr, forumactif.com, etc. User passwords are NOT stored.

Easy and quick :
Tired of switching between your multiple forumactif accounts ?
Activate this extension with just one click and your browser will remember and display your accounts for quick and easy login. No more hassle!

Smart and safe :
With a clean, barely noticeable design, you'll only see it when you need it. It blends in perfectly with most forumactif websites. It does not store any confidential information, and especially not your password! Only your nicknames, avatars and userids are stored in your browser local storage.

It just works :
This extension works with most forumactif forums, including those with custom domain names. There is not accounts limitation, no requirements other than logging into each account at least once. Have fun !                    

확장 프로그램 기본 정보

이름 Forumactif account switch Forumactif account switch
ID efmhebamamhaenolcbeiopjlkipfbgfe
공식 URL https://chromewebstore.google.com/detail/forumactif-account-switch/efmhebamamhaenolcbeiopjlkipfbgfe
설명 This extension was build to allow forumactif users to switch between accounts. You need to log at least once into each account.
파일 크기 397 KB
설치 횟수 83
현재 버전 1.8
최근 업데이트 2021-05-13
출시 날짜 2021-04-24
평점 5.00/5 총 2 개의 평점
개발자 https://forums-rpg.fr
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.forums-rpg.fr/
개인정보 보호 정책 페이지 URL https://www.forums-rpg.fr/privacy
지원되는 언어 fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Forumactif account switch",
    "description": "This extension was build to allow forumactif users to switch between accounts. You need to log at least once into each account.",
    "version": "1.8",
    "browser_action": {
        "default_icon": "icons\/128_nb.png",
        "icons": {
            "16": "icons\/16_nb.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        }
    },
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "*.js",
        "*.css"
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "optional_permissions": [
        "https:\/\/*\/"
    ]
}