Selection Menu

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

Qu'est-ce que Selection Menu ?

Selection Menu est une extension Chrome développée par mad1ost, et sa fonction principale est "Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Selection Menu

Téléchargez les fichiers d'extension Selection Menu au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Selection Menu Selection Menu
ID oplmnnimmmpiofnckcojgkonjfajgfhl
URL Officiel https://chromewebstore.google.com/detail/selection-menu/oplmnnimmmpiofnckcojgkonjfajgfhl
Description Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)
Taille du Fichier 14.32 KB
Nombre d'Installations 51
Version Actuelle 3.1.0
Dernière Mise à Jour 2024-02-01
Date de Publication 2020-06-27
Évaluation 5.00/5 Total 3 Évaluations
Développeur mad1ost
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/mad1ost/selection-menu
URL de la Page d'Aide https://github.com/mad1ost/selection-menu/issues
Langues Prises en Charge 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"
    ]
}