Pin Messenger Convos
Allows users to pin specific Messenger conversations
What is Pin Messenger Convos?
Pin Messenger Convos is a Chrome extension developed by twongers, and its main feature is "Allows users to pin specific Messenger conversations".
Extension Screenshots
Download Pin Messenger Convos Extension CRX File
Download Pin Messenger Convos 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
This extension is great for users who want to keep important people on the top of their conversation list at all times. This extension DOES NOT store any personal data.
Extension Basic Information
Name | Pin Messenger Convos |
ID | pephadpjcfijclnelhpcnnjialbkjbgd |
Official URL | https://chrome.google.com/webstore/detail/pin-messenger-convos/pephadpjcfijclnelhpcnnjialbkjbgd |
Description | Allows users to pin specific Messenger conversations |
File Size | 88.13 KB |
Installation Count | 83 |
Current Version | 1.0 |
Last Updated | 2019-04-15 |
Publish Date | 2019-04-15 |
Rating | 3.00/5 Total 1 Ratings |
Developer | twongers |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pin Messenger Convos", "description": "Allows users to pin specific Messenger conversations", "version": "1.0", "icons": { "32": "icon.png" }, "permissions": [ "activeTab", "storage" ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "web_accessible_resources": [ "pin.png" ], "content_scripts": [ { "matches": [ "*:\/\/*.messenger.com\/*" ], "css": [ "pin-messenger.css" ], "js": [ "jquery.js", "chrome.js" ], "run_at": "document_end" } ], "manifest_version": 2 } |