Ebay Button

Open Ebay with a click: Ebay button is simply a shortcut to ebay.com, a kind of bookmark, but added to the toolbar.

Τι είναι το Ebay Button;

Το Ebay Button είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://openaddons.com, και η κύρια λειτουργία του είναι "Open Ebay with a click: Ebay button is simply a shortcut to ebay.com, a kind of bookmark, but added to the toolbar.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Ebay Button

Λήψη αρχείων επέκτασης Ebay Button σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This is just a shortcut to eBay, nothing more. 

It’s literally a bookmark but added to the toolbar (instead of the bookmarks menu).

Options: Right-click and select “Options” to change the icon and customize the way the button works. There are also some other settings that you may want to change: you can choose which eBay site to open (.com, .co.uk etc.), you can set the button to open eBay in new tab or in the current tab and, if you want, you can add it to the context menu.

**Questions & Answers**

Why adding separate extension for something that needs only a bookmark?
-- Because bookmarks can’t be added to the toolbar, and there are changeable icons (and some other options) for better look and feel

But extensions eat system memory, why wasting resources just for one simple bookmark?
-- Not true. It doesn’t eat memory. Said in programmers’ slang: it uses non-persistent background page, which, in English, means the browser does not reserve memory for the button (check the Chrome Task Manager if you want to see for yourself: when you click on the bookmark icon it will start the extension, open the settings page and remove it quickly after that). It acts like bookmark and the only resources it uses is for the screen space of the icon (yes, it takes space from the toolbar, because… well, that’s the whole point of it)

If I install it, is it easy to remove the extension later?
-- Yes, you can remove it with literally two clicks (just right-click on the eBay button and select “Remove from Chrome”)

How to access the options page?
-- Right-click on the button and select “Options”. 

How to set it to open eBay in the current tab instead of creating new tab?
-- Right-click on the extension’s icon and select “Options”, then uncheck the first checkbox

How to add the shortcut to the context menu?
-- Go to the options page (see above) and check the “Add button to context menu” checkbox

How to change the toolbar icon?
-- See above: just go to the “Options” page and play with the icons. Note that if you select your own icon, it has to be 19x19 pixels (otherwise you’ll get strange results)


Disclaimer:  This extension is not an official eBay product. It is made by third-party developer (openaddons.com) and is not associated in any way with eBay, Inc.


Read more about this extension and take a look at our other add-ons at:
https://openaddons.com                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Ebay Button Ebay Button
ID lpmakbbndaemdmmdpfijabdjdklhkkbd
Επίσημο URL https://chromewebstore.google.com/detail/ebay-button/lpmakbbndaemdmmdpfijabdjdklhkkbd
Περιγραφή Open Ebay with a click: Ebay button is simply a shortcut to ebay.com, a kind of bookmark, but added to the toolbar.
Μέγεθος Αρχείου 19.73 KB
Αριθμός Εγκαταστάσεων 1,011
Τρέχουσα Έκδοση 1.0.0.0
Τελευταία Ενημέρωση 2018-02-28
Ημερομηνία Δημοσίευσης 2018-02-27
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής https://openaddons.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://openaddons.com/
Διεύθυνση URL της Σελίδας Βοήθειας https://openaddons.com/ebay-button/
URL της Σελίδας Πολιτικής Απορρήτου https://openaddons.com/privacy
Υποστηριζόμενες Γλώσσες en,en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "default_locale": "en",
    "name": "__MSG_name__",
    "version": "1.0.0.0",
    "manifest_version": 2,
    "homepage_url": "https:\/\/openaddons.com\/",
    "description": "__MSG_description__",
    "icons": {
        "16": "icon.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "offline_enabled": true,
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "__MSG_icon_hover_text__"
    },
    "incognito": "spanning",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "settings.html"
}