Code Tag

This extension helps add html tag for editable selected context

Cos'è Code Tag?

Code Tag è un'estensione di Chrome sviluppata da zouyu4524, e la sua funzione principale è "This extension helps add html tag for editable selected context".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Code Tag

Scarica i file di estensione Code Tag in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

 在博客的HTML编辑页面为选定的内容 添加HTML标签 注意:安装后请刷新需要使用该插件的页面以生效。 目前支持两种模式: 1. Block (
...
) 2. Inline (...) 配合Blogger添加自定义CSS效果更佳!

Informazioni di Base sull'Estensione

Nome Code Tag Code Tag
ID nglfhnmgedigeapkbmmgcngomahhbdol
URL Ufficiale https://chromewebstore.google.com/detail/code-tag/nglfhnmgedigeapkbmmgcngomahhbdol
Descrizione This extension helps add html tag for editable selected context
Dimensione del File 38.4 KB
Conteggio Installazioni 28
Versione Corrente 0.3
Ultimo Aggiornamento 2017-06-27
Data di Pubblicazione 2017-06-26
Valutazione 4.00/5 Totale 3 Valutazioni
Sviluppatore zouyu4524
Email [email protected]
Tipo di Pagamento free
Lingue Supportate zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Code Tag",
    "description": "This extension helps add html tag for editable selected context",
    "version": "0.3",
    "permissions": [
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "addTag.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "128": "icon.png"
    },
    "manifest_version": 2
}