Confluence Inline Comments

This extension displays the first inline comment on a confluence page

Vad är Confluence Inline Comments?

Confluence Inline Comments är en Chrome-tillägg utvecklad av wd.cristian, och dess huvudfunktion är "This extension displays the first inline comment on a confluence page".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Confluence Inline Comments-förlängningens CRX-fil

Ladda ner Confluence Inline Comments-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Confluence Inline Comments Confluence Inline Comments
ID hpfpfnjedfphnnfdfklkbejachlfoeog
Officiell webbadress https://chromewebstore.google.com/detail/confluence-inline-comment/hpfpfnjedfphnnfdfklkbejachlfoeog
Beskrivning This extension displays the first inline comment on a confluence page
Filstorlek 14.21 KB
Antal Installationer 55
Aktuell Version 0.4
Senast Uppdaterad 2020-02-20
Publiceringsdatum 2020-02-20
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare wd.cristian
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}