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
官方網址 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
電子郵箱 [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"
            ]
        }
    ]
}