FFMSB (Freedom for mouse side buttons)

Prevents history navigation using forward and back buttons on your mouse

FFMSB (Freedom for mouse side buttons)란 무엇입니까?

FFMSB (Freedom for mouse side buttons)은(는) Vaker에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Prevents history navigation using forward and back buttons on your mouse"입니다.

확장 프로그램 스크린샷

screenshot

FFMSB (Freedom for mouse side buttons) 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension prevents default actions (forward/back history jumps) for mouse side buttons (4 and 5)

FAQ:
Q: Why do you need a permission to change contents for all websites?
A: Because it allows this extension to inject 5 lines of JavaScript code into webpages, preventing default mouse actions. You can verify the contents of injected code using dev tools (F12) -> Sources -> Content scripts (on the left side) -> FFMSB. Contents of this file are also provided in screenshots section because there's nothing else to take screenshots of :)

Q: IT DOES NOT WOOOOORK :((((
A: It does, except for 2 cases :)
 1. Chrome Web Store (extensions are not allowed to use content scripts here due to security reasons)
 2. Chrome menus, including the entire top bar (again, it's impossible to intercept shortcuts while your mouse is there) 

Q: Who is this made for?
A: For people who use these buttons in other applications running alongside Chrome - for example, in VOIP software as push-to-talk button                    

확장 프로그램 기본 정보

이름 FFMSB (Freedom for mouse side buttons) FFMSB (Freedom for mouse side buttons)
ID najmjkgimjhilaleingfkhedncclmmaf
공식 URL https://chromewebstore.google.com/detail/ffmsb-freedom-for-mouse-s/najmjkgimjhilaleingfkhedncclmmaf
설명 Prevents history navigation using forward and back buttons on your mouse
파일 크기 34.95 KB
설치 횟수 3,268
현재 버전 0.2
최근 업데이트 2021-07-23
출시 날짜 2021-04-28
평점 4.62/5 총 37 개의 평점
개발자 Vaker
이메일 [email protected]
결제 유형 free
지원되는 언어 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": [],
    "manifest_version": 3,
    "version": "0.2",
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}