Selection Menu

Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)

Τι είναι το Selection Menu;

Το Selection Menu είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον mad1ost, και η κύρια λειτουργία του είναι "Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Selection Menu

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

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

                        Select the text and click on one of the buttons in the pop-up menu (copy or search in Google (or other search engines)). See extension preferences to choose your own search engine.                    

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

Όνομα Selection Menu Selection Menu
ID oplmnnimmmpiofnckcojgkonjfajgfhl
Επίσημο URL https://chromewebstore.google.com/detail/selection-menu/oplmnnimmmpiofnckcojgkonjfajgfhl
Περιγραφή Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)
Μέγεθος Αρχείου 14.32 KB
Αριθμός Εγκαταστάσεων 51
Τρέχουσα Έκδοση 3.1.0
Τελευταία Ενημέρωση 2024-02-01
Ημερομηνία Δημοσίευσης 2020-06-27
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής mad1ost
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/mad1ost/selection-menu
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/mad1ost/selection-menu/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Selection Menu",
    "version": "3.1.0",
    "description": "Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)",
    "homepage_url": "https:\/\/github.com\/mad1ost\/selection-menu",
    "icons": {
        "32": "icons\/icon-32.png",
        "64": "icons\/icon-64.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "selection-menu.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "js": [
                "selection-menu-sub.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "storage"
    ]
}