Selection Popup

Perform customizable actions (Search, Copy etc) on selected text.

Qu'est-ce que Selection Popup ?

Selection Popup est une extension Chrome développée par mubaidr, et sa fonction principale est "Perform customizable actions (Search, Copy etc) on selected text.".

Captures d'Écran de l'Extension

screenshot
screenshot

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

Téléchargez les fichiers d'extension Selection Popup 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

                        Use commands (Copy or Go to Web address) on selected text or search the selected text using configurable search engines. 

You can manage search engines in options, their order of appearance, names etc

Enable or disable available commands in the options. 

Or even use your styles using CSS to customize the look of popup.                    

Informations de Base sur l'Extension

Nom Selection Popup Selection Popup
ID ahecgidbcpeicikbcpaljaocofecilpd
URL Officiel https://chrome.google.com/webstore/detail/selection-popup/ahecgidbcpeicikbcpaljaocofecilpd
Description Perform customizable actions (Search, Copy etc) on selected text.
Taille du Fichier 62.59 KB
Nombre d'Installations 1,000
Version Actuelle 1.9.7
Dernière Mise à Jour 2020-02-11
Date de Publication 2020-02-11
Évaluation 4.56/5 Total 45 Évaluations
Développeur mubaidr
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://github.com/mubaidr/selection-popup/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                ".\/contentScript.css"
            ],
            "js": [
                ".\/contentScript.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "description": "Perform customizable actions (Search, Copy etc) on selected text.",
    "icons": {
        "16": "assets\/icons\/icon_48.png",
        "128": "assets\/icons\/icon_128.png"
    },
    "manifest_version": 2,
    "name": "Selection Popup",
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "tabs"
    ],
    "version": "1.9.7"
}