Copy Element Text

Copies the text inside elements

Copy Element Textとは何ですか?

Copy Element Textはmistweaver.coによって開発されたChromeの拡張機能で、その主な機能は「Copies the text inside elements」です。

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

screenshot
screenshot

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

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

拡張機能の使用方法

                        Enables you to copy the text of an element within the context menu.
Just right click on the link and select "Copy element text".

Full source-code available here: https://github.com/mistweaverco/copy-element-text

If you're looking for a "copy a link text" extension, head over to the companion extension here:

Copy Link Text
https://chrome.google.com/webstore/detail/copy-link-text/loeniidbmeohdlmipbpkfmiogbcncibh?hl=en                    

拡張機能の基本情報

名前 Copy Element Text Copy Element Text
ID lejdjhmnhlhjhfmcalaimioiogkibdea
公式URL https://chromewebstore.google.com/detail/copy-element-text/lejdjhmnhlhjhfmcalaimioiogkibdea
説明 Copies the text inside elements
ファイルサイズ 41.63 KB
インストール数 564
現在のバージョン 1.0.0
最終更新日 2022-10-19
公開日 2022-10-03
評価 3.60/5 合計 5 レビュー
開発者 mistweaver.co
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Element Text",
    "version": "1.0.0",
    "description": "Copies the text inside elements",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon-32.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "service_worker": "service_worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "boot.js"
            ]
        }
    ]
}