confluence-auto-expander

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

confluence-auto-expanderคืออะไร?

confluence-auto-expander เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lo และคุณลักษณะหลักของมันคือ "A background app to auto-expand any collapsible panels in Confluence."

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย confluence-auto-expander

ดาวน์โหลดไฟล์ส่วนขยาย confluence-auto-expander ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ confluence-auto-expander confluence-auto-expander
ID cikcpbiockeecaeogocphgojieohacpp
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/confluence-auto-expander/cikcpbiockeecaeogocphgojieohacpp
คำอธิบาย A background app to auto-expand any collapsible panels in Confluence.
ขนาดไฟล์ 12.34 KB
จำนวนการติดตั้ง 27
เวอร์ชันปัจจุบัน 0.0.2
อัปเดตครั้งล่าสุด 2016-05-02
วันที่เผยแพร่ 2016-05-02
คะแนน 2.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา lo
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/laurent-malvert/cr-confluence-auto-expander
ภาษาที่รองรับ 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"
            ]
        }
    ]
}