Selection Popup

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

Vad är Selection Popup?

Selection Popup är en Chrome-tillägg utvecklad av mubaidr, och dess huvudfunktion är "Perform customizable actions (Search, Copy etc) on selected text.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Selection Popup-förlängningens CRX-fil

Ladda ner Selection Popup-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Selection Popup Selection Popup
ID ahecgidbcpeicikbcpaljaocofecilpd
Officiell webbadress https://chrome.google.com/webstore/detail/selection-popup/ahecgidbcpeicikbcpaljaocofecilpd
Beskrivning Perform customizable actions (Search, Copy etc) on selected text.
Filstorlek 62.59 KB
Antal Installationer 1,000
Aktuell Version 1.9.7
Senast Uppdaterad 2020-02-11
Publiceringsdatum 2020-02-11
Betyg 4.56/5 Totalt 45 Betyg
Utvecklare mubaidr
E-post [email protected]
Betalningssätt free
Hjälpsida URL https://github.com/mubaidr/selection-popup/issues
Stödda Språk 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"
}