Google Bold Extractor

Extracts and copies em tags content from the current webpage

Google Bold Extractor là gì?

Google Bold Extractor là một tiện ích mở rộng Chrome được phát triển bởi https://www.bigtechies.com, và tính năng chính của nó là "Extracts and copies em tags content from the current webpage".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Google Bold Extractor

Tải xuống các tệp mở rộng Google Bold Extractor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Google Bold Extractor Google Bold Extractor
ID iihdimlicacgcnignahdlbmefffoejma
URL Chính Thức https://chromewebstore.google.com/detail/google-bold-extractor/iihdimlicacgcnignahdlbmefffoejma
Mô tả Extracts and copies em tags content from the current webpage
Kích Thước Tệp 15.51 KB
Số Lần Cài Đặt 431
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2023-05-24
Ngày Phát Hành 2023-05-23
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển https://www.bigtechies.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.bigtechies.com/
URL Trang Trợ Giúp https://github.com/AleemIqbal/bold-extractor-extension
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}