Text Copy

Copy all text in a tag

Text Copyとは何ですか?

Text Copyはtextcopyextによって開発されたChromeの拡張機能で、その主な機能は「Copy all text in a tag」です。

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

screenshot

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

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

拡張機能の使用方法

                        Text Copy allows for simple keyboard shortcuts to highlight and copy text to the clipboard. This text can be single blocks of texts, or a range of text.                    

拡張機能の基本情報

名前 Text Copy Text Copy
ID cpckijnniakijaejiimdekjdlnammgko
公式URL https://chrome.google.com/webstore/detail/text-copy/cpckijnniakijaejiimdekjdlnammgko
説明 Copy all text in a tag
ファイルサイズ 470 KB
インストール数 5,000
現在のバージョン 1.1
最終更新日 2018-07-05
公開日 2018-07-05
評価 4.44/5 合計 16 レビュー
開発者 textcopyext
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Text Copy",
    "version": "1.1",
    "description": "Copy all text in a tag",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "manifest_version": 2,
    "permissions": [
        "",
        "tabs",
        "activeTab",
        "windows"
    ],
    "browser_action": {
        "name": "Text Copy",
        "icons": [
            "icon.png"
        ],
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/res\/jquery-2.2.0.min.js",
                "js\/content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "persistent": true
        }
    ]
}