Right Click Amazon Search

Adds a right click menu allowing you to search your highlighted/selected text on any Amazon site. Supports all the Amazon sites…

Hvad er Right Click Amazon Search?

Right Click Amazon Search er en Chrome-udvidelse udviklet af No Ad Extensions, og dens hovedfunktion er "Adds a right click menu allowing you to search your highlighted/selected text on any Amazon site. Supports all the Amazon sites…".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Right Click Amazon Search-udvidelses-CRX-fil

Download Right Click Amazon Search-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Adds a right click menu allowing you to search your highlighted/selected text on any Amazon site.

Supports all the Amazon sites worldwide! This includes the following sites and locales: [ amazon.com | smile.amazon.com | .ca | .com.mx | .com.au | .in | .it | .fr | .es | .co.jp | .de | .pl | .com.tr | .cn | .sa | .sg | .ae | .com.br | .eg | .se]                    

Grundlæggende oplysninger om udvidelsen

Navn Right Click Amazon Search Right Click Amazon Search
ID gpiaaogmhemeaflkjieknaaknnoelnom
Officiel URL https://chromewebstore.google.com/detail/right-click-amazon-search/gpiaaogmhemeaflkjieknaaknnoelnom
Beskrivelse Adds a right click menu allowing you to search your highlighted/selected text on any Amazon site. Supports all the Amazon sites…
Filstørrelse 20.59 KB
Antal Installationer 29
Nuværende Version 1
Senest Opdateret 2022-03-14
Udgivelsesdato 2022-03-14
Udvikler No Ad Extensions
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Right Click Amazon Search",
    "version": "1",
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "extension_icon16.png",
        "32": "extension_icon32.png",
        "48": "extension_icon48.png",
        "128": "extension_icon128.png"
    },
    "background": {
        "service_worker": "bg.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "fg.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "storage"
    ]
}