usansible

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

什麼是usansible?

usansible是由zaki.hmkc開發的Chrome擴展程式,該擴展的主要功能是“usansible ... support your Ansible Development. this tool provides you with two functions.”。

擴展截圖

screenshot
screenshot

下載usansible擴展crx文件

下載usansible擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 usansible usansible
ID aphgdbhkenbiokjnafmboeagdhjkafee
官方網址 https://chromewebstore.google.com/detail/usansible/aphgdbhkenbiokjnafmboeagdhjkafee
簡介 usansible ... support your Ansible Development. this tool provides you with two functions.
檔案大小 11.24 KB
安裝次數 75
目前版本 1.9.0
更新時間 2023-10-09
上架時間 2019-12-21
評分 5.00/5 共 3 次評分
開發者 zaki.hmkc
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/zaki-lknr/usansible
支援的語言 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"
    }
}