Selection Popup

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

Co je Selection Popup?

Selection Popup je rozšíření Chrome vyvinuté mubaidr, a jeho hlavní funkcí je „Perform customizable actions (Search, Copy etc) on selected text.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Selection Popup

Stáhněte si soubory rozšíření Selection Popup ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Selection Popup Selection Popup
ID ahecgidbcpeicikbcpaljaocofecilpd
Oficiální URL https://chrome.google.com/webstore/detail/selection-popup/ahecgidbcpeicikbcpaljaocofecilpd
Popis Perform customizable actions (Search, Copy etc) on selected text.
Velikost souboru 62.59 KB
Počet instalací 1,000
Aktuální Verze 1.9.7
Poslední Aktualizace 2020-02-11
Datum Vydání 2020-02-11
Hodnocení 4.56/5 Celkem 45 Hodnocení
Vývojář mubaidr
E-mail [email protected]
Typ Platby free
URL Stránky Nápovědy https://github.com/mubaidr/selection-popup/issues
Podporované Jazyky 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"
}