Confluence Inline Comments
This extension displays the first inline comment on a confluence page
What is Confluence Inline Comments?
Confluence Inline Comments is a Chrome extension developed by wd.cristian, and its main feature is "This extension displays the first inline comment on a confluence page".
Extension Screenshots
Download Confluence Inline Comments Extension CRX File
Download Confluence Inline Comments 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 displays the first inline comment on a confluence page. Added a small bug fix to avoid double scroll. - Version 4 adapts the code to the new editor's version.
Extension Basic Information
Name | Confluence Inline Comments |
ID | hpfpfnjedfphnnfdfklkbejachlfoeog |
Official URL | https://chromewebstore.google.com/detail/confluence-inline-comment/hpfpfnjedfphnnfdfklkbejachlfoeog |
Description | This extension displays the first inline comment on a confluence page |
File Size | 14.21 KB |
Installation Count | 55 |
Current Version | 0.4 |
Last Updated | 2020-02-20 |
Publish Date | 2020-02-20 |
Rating | 5.00/5 Total 2 Ratings |
Developer | wd.cristian |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Confluence Inline Comments", "version": "0.4", "manifest_version": 2, "description": "This extension displays the first inline comment on a confluence page", "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.atlassian.net\/*" ], "js": [ "fixDoubleBar.js" ], "run_at": "document_end" } ], "permissions": [ "activeTab" ] } |