confluence-auto-expander

A background app to auto-expand any collapsible panels in Confluence.

Qu'est-ce que confluence-auto-expander ?

confluence-auto-expander est une extension Chrome développée par lo, et sa fonction principale est "A background app to auto-expand any collapsible panels in Confluence.".

Télécharger le fichier CRX de l'extension confluence-auto-expander

Téléchargez les fichiers d'extension confluence-auto-expander au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        A simple Chrom{e,ium} extension that will automatically expand any collapsed panels on any Confluence wiki page you visit.

This is mostly handy if you often need to do a text search on wiki pages that routinely contain collapsed panels. The content of these panels will show up when doing a Wiki search, but won't yield any results when doing an in-page search with your browser's search feature, as the panels are collapsed and their content is not visible.

Rather than manually expanding all panels before performing a text-search (or a screen capture, or any other use case where you need the page content to be fully visible), let this extension take care of it for you on document load.                    

Informations de Base sur l'Extension

Nom confluence-auto-expander confluence-auto-expander
ID cikcpbiockeecaeogocphgojieohacpp
URL Officiel https://chrome.google.com/webstore/detail/confluence-auto-expander/cikcpbiockeecaeogocphgojieohacpp
Description A background app to auto-expand any collapsible panels in Confluence.
Taille du Fichier 12.34 KB
Nombre d'Installations 27
Version Actuelle 0.0.2
Dernière Mise à Jour 2016-05-02
Date de Publication 2016-05-02
Évaluation 2.00/5 Total 1 Évaluations
Développeur lo
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/laurent-malvert/cr-confluence-auto-expander
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "confluence-auto-expander",
    "short_name": "confluence-auto-expander",
    "description": "A background app to auto-expand any collapsible panels in Confluence.",
    "version": "0.0.2",
    "minimum_chrome_version": "38",
    "author": "Laurent Malvert ",
    "offline_enabled": true,
    "permissions": [
        "activeTab",
        "declarativeContent"
    ],
    "icons": {
        "16": "assets\/icon_16.png",
        "128": "assets\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [],
            "js": [
                "cf-auto-expander.js"
            ]
        }
    ]
}