clickForCode

Click to add a

 tag inside the HTML .

clickForCodeとは何ですか?

clickForCodeはryanpcmcquenによって開発されたChromeの拡張機能で、その主な機能は「Click to add a

 tag inside the HTML .」です。

拡張機能のスクリーンショット

screenshot

clickForCode拡張機能のCRXファイルをダウンロード

clickForCode拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

 Open source, of course: https://github.com/ryanpcmcquen/clickForCode Useful for when you have a PHP `var_dump();` and forgot to add a `
` tag.

It also automatically detects text only pages, and will automatically format them.                    

拡張機能の基本情報

名前 clickForCode clickForCode
ID ihfahclbppdojebkcgggncbkobblacbm
公式URL https://chromewebstore.google.com/detail/clickforcode/ihfahclbppdojebkcgggncbkobblacbm
説明 Click to add a
 tag inside the HTML .
ファイルサイズ 19.82 KB
インストール数 87
現在のバージョン 0.2.0
最終更新日 2018-12-26
公開日 2018-12-20
評価 5.00/5 合計 1 レビュー
開発者 ryanpcmcquen
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/ryanpcmcquen/clickForCode
ヘルプページのURL https://github.com/ryanpcmcquen/clickForCode
対応言語 en-US
manifest.json
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "clickForCode", "description": "Click to add a 
 tag inside the HTML .",
    "version": "0.2.0",
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_icon": {
            "512": "clickForCode.png"
        }
    },
    "background": {
        "persistent": false,
        "scripts": [
            "clickForCode.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "clickForCodeContent.js"
            ]
        }
    ]
}