Copy Text from HTML Extension

Copy text content of an HTML element with Shift + Alt + C

Copy Text from HTML Extensionとは何ですか?

Copy Text from HTML Extensionはjuniormayheによって開発されたChromeの拡張機能で、その主な機能は「Copy text content of an HTML element with Shift + Alt + C」です。

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

screenshot
screenshot

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

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

拡張機能の使用方法

                        "Copy Text from HTML" allows users to copy the text content of an HTML element with ease. When activated with the hotkey Shift + Alt + C, it removes all HTML tags and attributes, JavaScript code, CSS styles, empty and blank lines, special characters, and commented code, leaving only the plain text content. 

It also handles special cases, such as select elements, lists, and anchor tags within lists, to provide the user with the most accurate and useful text content possible. 

With this extension, copying text from HTML has never been easier or more reliable.

If you find any trouble, try to right click the desired element and then press Shift + Alt + C.                    

拡張機能の基本情報

名前 Copy Text from HTML Extension Copy Text from HTML Extension
ID lidcepffhffngghmeiooaeefcicggcpg
公式URL https://chromewebstore.google.com/detail/copy-text-from-html-exten/lidcepffhffngghmeiooaeefcicggcpg
説明 Copy text content of an HTML element with Shift + Alt + C
ファイルサイズ 1.54 MB
インストール数 55
現在のバージョン 1.0
最終更新日 2023-05-02
公開日 2023-05-01
開発者 juniormayhe
Eメール [email protected]
支払い方法 free
ヘルプページのURL https://juniormayhe.com/contact
プライバシーポリシーページのURL https://github.com/juniormayhe/PipelineFilterExtension/blob/master/privacy.md
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Text from HTML Extension",
    "version": "1.0",
    "description": "Copy text content of an HTML element with Shift + Alt + C",
    "author": "junior mayhe",
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "store\/16.png",
        "32": "store\/32.png",
        "48": "store\/48.png",
        "128": "store\/128.png"
    },
    "action": {
        "default_title": "Copy Text",
        "default_icon": "icon.png"
    },
    "commands": {
        "copy-text": {
            "suggested_key": {
                "default": "Shift+Alt+C"
            },
            "description": "Copy text only from selected HTML element"
        }
    }
}