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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
            ]
        }
    ]
}