usansible

usansible ... support your Ansible Development. this tool provides you with two functions.

Vad är usansible?

usansible är en Chrome-tillägg utvecklad av zaki.hmkc, och dess huvudfunktion är "usansible ... support your Ansible Development. this tool provides you with two functions.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner usansible-förlängningens CRX-fil

Ladda ner usansible-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

                        1. Ansible Document Search

type "usa" in Chrome address-bar and input keyword(e.g. "yum"), you can access directly "Search Result" in Ansible Documentation Website.

2. Access to Collections(Module/Plugin) source file in GitHub

add a link to GitHub on Collections documentation page.                    

Grundläggande Information om Tillägg

Namn usansible usansible
ID aphgdbhkenbiokjnafmboeagdhjkafee
Officiell webbadress https://chromewebstore.google.com/detail/usansible/aphgdbhkenbiokjnafmboeagdhjkafee
Beskrivning usansible ... support your Ansible Development. this tool provides you with two functions.
Filstorlek 11.24 KB
Antal Installationer 75
Aktuell Version 1.9.0
Senast Uppdaterad 2023-10-09
Publiceringsdatum 2019-12-21
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare zaki.hmkc
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/zaki-lknr/usansible
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "usansible",
    "version": "1.9.0",
    "description": "usansible ... support your Ansible Development. this tool provides you with two functions.",
    "icons": {
        "128": "icons\/usansible.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.ansible.com\/ansible\/*\/modules\/*",
                "https:\/\/docs.ansible.com\/ansible\/*\/plugins\/*",
                "https:\/\/docs.ansible.com\/ansible\/*\/collections\/*"
            ],
            "js": [
                "usansible.js"
            ],
            "run_at": "document_end"
        }
    ],
    "omnibox": {
        "keyword": "usa"
    },
    "background": {
        "service_worker": "background.js"
    }
}