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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Prevents history navigation using forward and back buttons on your mouse"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में FFMSB (Freedom for mouse side buttons) एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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) |
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" ] } ] } |