Rocker Gestures

Allows you to navigate back and forward with your mouse button clicks (right + left = back).

Rocker Gestures란 무엇입니까?

Rocker Gestures은(는) https://fastaddons.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to navigate back and forward with your mouse button clicks (right + left = back)."입니다.

확장 프로그램 스크린샷

Rocker Gestures 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        No Back / Forward buttons on your mouse? 
No problem!

Rocker Gestures allows you to:
- go Back - by holding Right mouse button and pressing Left mouse button
- go Forward - by holding Left mouse button and pressing Right mouse button

This feature is known from Opera browser.

Known issues:
- does not work HERE on https://chrome.google.com/webstore/ (blocked by Chrome)
- does not work on browser specific pages like "chrome://extensions" (blocked by Chrome)
- does not work in "PDF view" (blocked by Chrome)
- does not work on other extensions pages like options page of some addon (blocked by Chrome)
- context menu may be shown when navigating forward and Right mouse button is released during the transition between pages (when old script is gone and new script didn't started yet)

Contribution:
- I'm full-time extension developer and your donations is my only income. There are no ads in my extensions!
- Please support my work by:
    - Buy me a coffee - https://ko-fi.com/fastaddons
    - PayPal donation - https://paypal.me/fastaddons/
    - Patron - https://www.patreon.com/fastaddons

Thank you! :)
Your donation will help me keep this extension working in future versions of Chrome!

Recently added features:
https://addons.mozilla.org/addon/rocker_gestures/versions/                    

확장 프로그램 기본 정보

이름 Rocker Gestures Rocker Gestures
ID mpkefiplbfhlleedjbofbcjflaapblhf
공식 URL https://chromewebstore.google.com/detail/rocker-gestures/mpkefiplbfhlleedjbofbcjflaapblhf
설명 Allows you to navigate back and forward with your mouse button clicks (right + left = back).
파일 크기 98.85 KB
설치 횟수 469
현재 버전 2.0
최근 업데이트 2023-03-29
출시 날짜 2020-06-25
평점 4.83/5 총 12 개의 평점
개발자 https://fastaddons.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://fastaddons.com/#rocker_gestures
개인정보 보호 정책 페이지 URL https://github.com/fastaddons/privacy_policy
지원되는 언어 en,en-GB,en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "2.0",
    "author": "Juraj M\u00e4siar",
    "default_locale": "en",
    "name": "__MSG_app_name__",
    "description": "__MSG_app_desc__",
    "icons": {
        "32": "32.png",
        "48": "48.png",
        "64": "64.png",
        "96": "96.png",
        "128": "128.png"
    },
    "background": {
        "service_worker": "background.loader.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "browser-polyfill.min.js",
                "content_script\/rocker_gestures_cs.js"
            ]
        }
    ],
    "host_permissions": [
        ""
    ],
    "incognito": "split"
}