Messenger Only
Simplifies the html of the Messenger section in Facebook.
What is Messenger Only?
Messenger Only is a Chrome extension developed by Anton Petrov (blz777), and its main feature is "Simplifies the html of the Messenger section in Facebook.".
Download Messenger Only Extension CRX File
Download Messenger Only extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Automatically removes the top blue bar of Facebook when you open the Facebook Messenger section (at facebook.com/messenger). A page refresh might be required. Source: https://github.com/blz777/messenger_only/
Extension Basic Information
Name | |
ID | pajmhgafdleolgnobmgphhbihoenekim |
Official URL | https://chrome.google.com/webstore/detail/messenger-only/pajmhgafdleolgnobmgphhbihoenekim |
Description | Simplifies the html of the Messenger section in Facebook. |
File Size | 3.44 KB |
Installation Count | 114 |
Current Version | 0.20 |
Last Updated | 2015-03-01 |
Publish Date | 2015-03-01 |
Rating | 4.00/5 Total 4 Ratings |
Developer | Anton Petrov (blz777) |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Messenger Only", "description": "Simplifies the html of the Messenger section in Facebook.", "version": "0.20", "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/*.facebook.com\/messages\/*" ], "css": [ "prepare.css" ], "run_at": "document_start" }, { "matches": [ "https:\/\/*.facebook.com\/messages\/*" ], "js": [ "modifyPageContent.js" ], "run_at": "document_end" } ], "manifest_version": 2 } |