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”。
擴展截圖
下載FFMSB (Freedom for mouse side buttons)擴展crx文件
下載FFMSB (Freedom for mouse side buttons)擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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) |
ID | najmjkgimjhilaleingfkhedncclmmaf |
官方網址 | 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" ] } ] } |