Steal the Word

highlight, annotate, collect word from web pages

Τι είναι το Steal the Word;

Το Steal the Word είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://rakakroma.github.io/steal-word-landing-page, και η κύρια λειτουργία του είναι "highlight, annotate, collect word from web pages".

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

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Steal the Word

Λήψη αρχείων επέκτασης Steal the Word σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        ----Currently In beta, be noted there are some bugs----
Open Source, All Free, No Limitation, Won't Store User Data Online

Steal the Word is a browser extension for word note-taking, word highlighting, and reading assistance. Saving any word and their contextual information, Adding annotations, notes, tags, and more. Steal the Word will automatically highlight the saved words, and with just a click, you can quickly review the information you've saved.

(1) Increase familiarity with unfamiliar words on web pages.
(2) Easily taking word note, without wasting time organizing and never reviewing them.
(3) Efficiently organize the real-life usages of words.

Features:
Highlight and Annotate web page text.
Support online and local html file.
Supports saving words with multiple meanings or multiple sentences.

You can use Steal the Word for ANY language, as long as the word matches exactly. The program would not automatically recognize variations of the word, and would not convert text string between uppercase and lowercase. You can customize the matching rules or manually enter variations of the word.

This is not a dictionary tool, but you can still using free APIs to automatically query Chinese, Taiwanese, Hakka, English, and Japanese pronunciation info. API can be manually disabled on the settings page.

⚠️Note:
On some websites (such as CodeSandbox), text you are editing might be affected. You can manually set these websites to default off to avoid unexpected results.

If you have any suggestions, bug reports, or solutions to the above problems, please submit them on GitHub or the chrome store Support Page.

🪵 Visit github repository for change log.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Steal the Word Steal the Word
ID lolkalfaocfklgolbfblhdblhdppoaoa
Επίσημο URL https://chromewebstore.google.com/detail/steal-the-word/lolkalfaocfklgolbfblhdblhdppoaoa
Περιγραφή highlight, annotate, collect word from web pages
Μέγεθος Αρχείου 1.08 MB
Αριθμός Εγκαταστάσεων 49
Τρέχουσα Έκδοση 0.0.20
Τελευταία Ενημέρωση 2023-05-12
Ημερομηνία Δημοσίευσης 2023-02-16
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής https://rakakroma.github.io/steal-word-landing-page
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/rakakroma/steal-the-word
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/rakakroma/steal-the-word
Υποστηριζόμενες Γλώσσες en,zh-TW,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "__MSG_appDesc__",
    "version": "0.0.20",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "author": "rakakroma",
    "options_page": "options.html",
    "default_locale": "en",
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "background",
        "contextMenus"
    ],
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "\ud83d\udcabStealTheWord",
        "default_icon": "icon-48.png"
    },
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_globs": [
                "*:\/\/*.xhtml"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-48.png",
                "transparent-thief.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}