Downloads Button

Quick Button to Chrome Downloads

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

Το Downloads Button είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://openaddons.com, και η κύρια λειτουργία του είναι "Quick Button to Chrome Downloads".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        DESCRIPTION:

This extension will simply add a "Downloads" button to the toolbar. When clicked, it will open the Chrome downloads page (the list of your downloads). That’s all it does, it is not a downloader nor some fancy download manager. It’s just a customizable button.

OPTIONS:

•	Select different icon (useful to make it "fit" your Chrome theme). 
•	Add your own icon if you want to.
•	Add the download button to the context (right-click) menu 
•	Set it to open the downloads list in new tab or in the current tab

To change the settings -- right-click on the extension icon and select "Options".

PERMISSIONS:

This extension needs only the "contextMenus" permission -- this is solely for the option to add the "Downloads" menu item to the context menu                    

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

Όνομα Downloads Button Downloads Button
ID ohogkbgckjfhmgmfbdabalmggjmjdjmk
Επίσημο URL https://chromewebstore.google.com/detail/downloads-button/ohogkbgckjfhmgmfbdabalmggjmjdjmk
Περιγραφή Quick Button to Chrome Downloads
Μέγεθος Αρχείου 20.95 KB
Αριθμός Εγκαταστάσεων 1,388
Τρέχουσα Έκδοση 1.0.0.0
Τελευταία Ενημέρωση 2019-11-07
Ημερομηνία Δημοσίευσης 2019-11-07
Αξιολόγηση 4.67/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής https://openaddons.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://openaddons.com/
Διεύθυνση URL της Σελίδας Βοήθειας https://openaddons.com/downloads-button/
URL της Σελίδας Πολιτικής Απορρήτου https://openaddons.com/privacy
Υποστηριζόμενες Γλώσσες en
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"
}