Circle Mouse Gestures (pie menu)

Circle menu with actions on right mouse click

Circle Mouse Gestures (pie menu)とは何ですか?

Circle Mouse Gestures (pie menu)はemvaizedによって開発されたChromeの拡張機能で、その主な機能は「Circle menu with actions on right mouse click」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Circle Mouse Gestures (pie menu)拡張機能のCRXファイルをダウンロード

Circle Mouse Gestures (pie menu)拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension introduces convenient circle menu (so-called pie menu) to improve interaction with your browser. Just hold down the right mouse button, highlight one of the preset actions and release the button. 

Circle menu recreates the way mouse gestures were represented in good old Opera 12 browser, and allows to clearly see all available gestures, with no need to remember them all.

Circle Mouse Gestures is supposed to provide a better implementation of mouse gestures and drag gestures, while replacing the regular context menu at the same time — but regular context menu is always there whenever you need it. Perfect for fullscreen browsing!

Extension features:
- Regular actions, such as 'Go back', 'New tab', 'Scroll to top' etc.
- Separate gestures for links, images, input fields etc.
- Support for rocker gestures and mouse wheel gestures
- Supports horizontal wheel gestures - great on mouses with horizontal wheel, such as MX Master
- Support for trigger on long left click
- Great customization options - add actions levels, set their width and color for each action

Additional tools:
- Link preview (like in Safari on mac)
- Tab switcher (vertical/horizontal/grid), with ability to quickly switch, search and close tabs
- Bookmarks viewer (list/grid), with ability to search and open bookmarks
- Image viewer, with ability to zoom and rotate given image 
- Page shrinker, which adds horizontal space to page for easier reading on some websites                    

拡張機能の基本情報

名前 Circle Mouse Gestures (pie menu) Circle Mouse Gestures (pie menu)
ID kkknhbbfjlibfjagilggkcelmcobgefa
公式URL https://chromewebstore.google.com/detail/circle-mouse-gestures-pie/kkknhbbfjlibfjagilggkcelmcobgefa
説明 Circle menu with actions on right mouse click
ファイルサイズ 150 KB
インストール数 848
現在のバージョン 1.4.0
最終更新日 2022-10-10
公開日 2021-05-09
評価 4.64/5 合計 28 レビュー
開発者 emvaized
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/emvaized/circle-mouse-gestures
ヘルプページのURL https://github.com/emvaized/circle-mouse-gestures
プライバシーポリシーページのURL https://github.com/emvaized/selecton-extension/blob/master/PRIVACY.md
対応言語 en,nl,es,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Circle Mouse Gestures (pie menu)",
    "version": "1.4.0",
    "description": "__MSG_extensionDescription__",
    "default_locale": "en",
    "icons": {
        "48": "icons\/icon-monotone-48.png",
        "96": "icons\/icon-monotone-96.png",
        "128": "icons\/icon-monotone-128.png"
    },
    "background": {
        "scripts": [
            "src\/functions\/background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "icons\/icon-monotone-48.png"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/data\/configs.js",
                "src\/data\/variables.js",
                "src\/data\/actions-list.js",
                "src\/data\/icons.js",
                "src\/functions\/actions.js",
                "src\/functions\/check-action-availability.js",
                "src\/functions\/check-action-state.js",
                "src\/functions\/clipboard-functions.js",
                "src\/functions\/color-functions.js",
                "src\/functions\/text-selection-functions.js",
                "src\/functions\/image-functions.js",
                "src\/functions\/scroll-functions.js",
                "src\/functions\/text-format-functions.js",
                "src\/utils\/image-viewer.js",
                "src\/utils\/link-preview.js",
                "src\/utils\/page-shrinker.js",
                "src\/utils\/tab-switcher.js",
                "src\/ui\/circle\/circle.js",
                "src\/ui\/circle\/canvas-drawer.js",
                "src\/ui\/circle\/bg-dimmer.js",
                "src\/ui\/components\/helper-tooltip.js",
                "src\/ui\/components\/hint-tooltip.js",
                "src\/ui\/components\/rocker-icon.js",
                "src\/index.js"
            ],
            "css": [
                "src\/index.css"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "browser_style": true,
        "chrome_style": true,
        "open_in_tab": true
    },
    "browser_action": {
        "default_icon": "icons\/icon-monotone-48.png",
        "default_title": "Circle Mouse Gestures",
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "",
        "tabs",
        "storage",
        "sessions",
        "bookmarks",
        "clipboardWrite",
        "clipboardRead",
        "downloads",
        "notifications"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}