Google Bold Extractor

Extracts and copies em tags content from the current webpage

Google Bold Extractorとは何ですか?

Google Bold Extractorはhttps://www.bigtechies.comによって開発されたChromeの拡張機能で、その主な機能は「Extracts and copies em tags content from the current webpage」です。

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

screenshot

Google Bold Extractor拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Google Search Results Bold Keywords Extractor Chrome Extension

Google Search Results Bold Keywords Extractor is a simple Google Chrome extension that extracts text wrapped in  tags from the current web page and copies it to the clipboard. The extension works by injecting a content script into every page the user visits. The content script searches for all  tags on the page and extracts the text within them. The extracted text is then copied to the clipboard using the clipboardWrite permission.

Features
Extracts text wrapped in  tags from the current web page
Copies the extracted text to the clipboard
Works on all web pages
Easy to use

Usage
Once Bold Keywords Extractor is installed, it will automatically run on every web page you visit. To use the extension, simply click on the emTagExtractor icon in the Chrome toolbar. The extension will then extract all  tags on the page and copy the text within them to the clipboard.

Contributing
If you find a bug or have an idea for a new feature, feel free to open an issue or submit a pull request!                    

拡張機能の基本情報

名前 Google Bold Extractor Google Bold Extractor
ID iihdimlicacgcnignahdlbmefffoejma
公式URL https://chromewebstore.google.com/detail/google-bold-extractor/iihdimlicacgcnignahdlbmefffoejma
説明 Extracts and copies em tags content from the current webpage
ファイルサイズ 15.51 KB
インストール数 431
現在のバージョン 1.0
最終更新日 2023-05-24
公開日 2023-05-23
評価 5.00/5 合計 5 レビュー
開発者 https://www.bigtechies.com
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.bigtechies.com/
ヘルプページのURL https://github.com/AleemIqbal/bold-extractor-extension
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Bold Extractor",
    "version": "1.0",
    "description": "Extracts and copies em tags content from the current webpage",
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "scripting"
    ],
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ]
        }
    ]
}