Google Bold Extractor

Extracts and copies em tags content from the current webpage

Τι είναι το Google Bold Extractor;

Το Google Bold Extractor είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.bigtechies.com, και η κύρια λειτουργία του είναι "Extracts and copies em tags content from the current webpage".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Google Bold Extractor

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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"
            ]
        }
    ]
}