Paste Long Text

A chrome extension to paste your long text in just single click.

什么是Paste Long Text?

Paste Long Text是由Rajendra Arora开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension to paste your long text in just single click.”。

扩展截图

下载Paste Long Text扩展crx文件

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

扩展使用说明

                        Paste your long text in just one click.                    

扩展基本信息

名称 Paste Long Text Paste Long Text
ID dhonighchmchkhghhmnegegkciogailm
官方URL https://chromewebstore.google.com/detail/paste-long-text/dhonighchmchkhghhmnegegkciogailm
简介 A chrome extension to paste your long text in just single click.
文件大小 609 KB
安装次数 82
当前版本 1.2
更新时间 2017-11-03
上架时间 2017-11-02
评分 4.50/5 共4次评分
开发者 Rajendra Arora
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.rajendraarora.com
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Paste Long Text",
    "description": "A chrome extension to paste your long text in just single click.",
    "version": "1.2",
    "browser_action": {
        "default_icon": "assets\/icons\/48x48.png",
        "default_popup": "index.html",
        "default_title": "Paste Long Text"
    },
    "background": {
        "scripts": [
            "assets\/js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "assets\/js\/jquery.js",
                "assets\/js\/content.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "16": "assets\/icons\/16x16.png",
        "48": "assets\/icons\/48x48.png",
        "128": "assets\/icons\/128x128.png"
    }
}