Copy Link Text

Copies the text inside links

Copy Link Textとは何ですか?

Copy Link Textはvestakuphal285によって開発されたChromeの拡張機能で、その主な機能は「Copies the text inside links」です。

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

screenshot
screenshot

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

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

拡張機能の使用方法

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

Update ver: 1.12.1
 - Added copy text link history management feature, can review, export file txt and delete log history.
 - You can also share the copy text link history including text and link for you on social networks such as Twitter, LinkedIn and Facebook (automatically share using post api).                    

拡張機能の基本情報

名前 Copy Link Text Copy Link Text
ID loeniidbmeohdlmipbpkfmiogbcncibh
公式URL https://chromewebstore.google.com/detail/copy-link-text/loeniidbmeohdlmipbpkfmiogbcncibh
説明 Copies the text inside links
ファイルサイズ 565 KB
インストール数 30,654
現在のバージョン 3.0.1
最終更新日 2023-11-20
公開日 2020-09-25
評価 3.23/5 合計 78 レビュー
開発者 vestakuphal285
Eメール [email protected]
支払い方法 free
プライバシーポリシーページのURL https://sites.google.com/view/pass-generator-2023/home
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Link Text",
    "description": "Copies the text inside links",
    "default_locale": "en",
    "version": "3.0.1",
    "icons": {
        "16": ".\/icon-128.png",
        "48": ".\/icon-128.png",
        "128": ".\/icon-128.png"
    },
    "content_scripts": [
        {
            "css": [
                ".\/content-style.css"
            ],
            "js": [
                ".\/js\/content_script.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*.facebook.com\/*",
        "*:\/\/*.twitter.com\/*",
        "*:\/\/*.linkedin.com\/*",
        "*:\/\/anotepad.com\/*"
    ],
    "permissions": [
        "declarativeNetRequest",
        "storage",
        "contextMenus"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/background.js"
    }
}