Selection Popup

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

Cos'è Selection Popup?

Selection Popup è un'estensione di Chrome sviluppata da mubaidr, e la sua funzione principale è "Perform customizable actions (Search, Copy etc) on selected text.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Selection Popup

Scarica i file di estensione Selection Popup in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Selection Popup Selection Popup
ID ahecgidbcpeicikbcpaljaocofecilpd
URL Ufficiale https://chrome.google.com/webstore/detail/selection-popup/ahecgidbcpeicikbcpaljaocofecilpd
Descrizione Perform customizable actions (Search, Copy etc) on selected text.
Dimensione del File 62.59 KB
Conteggio Installazioni 1,000
Versione Corrente 1.9.7
Ultimo Aggiornamento 2020-02-11
Data di Pubblicazione 2020-02-11
Valutazione 4.56/5 Totale 45 Valutazioni
Sviluppatore mubaidr
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/mubaidr/selection-popup/issues
Lingue Supportate 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"
}