Capitalizer

Capitalize title texts without second thoughts

什么是Capitalizer?

Capitalizer是由alex.zhitnitsky开发的Chrome扩展程序,该扩展的主要功能是“Capitalize title texts without second thoughts”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Capitalizer扩展crx文件

下载Capitalizer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Highlight text, right click the selection, and choose "Capitalize". It's as simple as that. Capitalizing tweets? Blog post titles? Any kind of other text? Capitalizer got you covered. Title case with no second thoughts.                    

扩展基本信息

名称 Capitalizer Capitalizer
ID ajkdmhldcmmmfneelhebkigcecelkmkd
官方URL https://chromewebstore.google.com/detail/capitalizer/ajkdmhldcmmmfneelhebkigcecelkmkd
简介 Capitalize title texts without second thoughts
文件大小 41.81 KB
安装次数 475
当前版本 1.0
更新时间 2016-10-24
上架时间 2016-10-24
评分 5.00/5 共11次评分
开发者 alex.zhitnitsky
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Capitalizer",
    "description": "Capitalize title texts without second thoughts",
    "version": "1.0",
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "replacetext.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}