Code Tag

This extension helps add html tag for editable selected context

What is Code Tag?

Code Tag is a Chrome extension developed by zouyu4524, and its main feature is "This extension helps add html tag for editable selected context".

Extension Screenshots

screenshot

Download Code Tag Extension CRX File

Download Code Tag extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Code Tag Code Tag
ID nglfhnmgedigeapkbmmgcngomahhbdol
Official URL https://chromewebstore.google.com/detail/code-tag/nglfhnmgedigeapkbmmgcngomahhbdol
Description This extension helps add html tag for editable selected context
File Size 38.4 KB
Installation Count 28
Current Version 0.3
Last Updated 2017-06-27
Publish Date 2017-06-26
Rating 4.00/5 Total 3 Ratings
Developer zouyu4524
Email [email protected]
Payment Type free
Supported Languages 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
}