9gag Downloader

Extension to assist in sharing memes through the best humorous website 9GAG

Τι είναι το 9gag Downloader;

Το 9gag Downloader είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ricardo Carvalho, και η κύρια λειτουργία του είναι "Extension to assist in sharing memes through the best humorous website 9GAG".

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

screenshot

Λήψη αρχείου CRX της επέκτασης 9gag Downloader

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

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

                        Extension to help you share memes through the best 9GAG humor site. It has a simple button to download the viewed video or image and then share smiles.                    

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

Όνομα 9gag Downloader 9gag Downloader
ID cipeepjilkbilfmpjalegdlgmgoimjii
Επίσημο URL https://chromewebstore.google.com/detail/9gag-downloader/cipeepjilkbilfmpjalegdlgmgoimjii
Περιγραφή Extension to assist in sharing memes through the best humorous website 9GAG
Μέγεθος Αρχείου 276 KB
Αριθμός Εγκαταστάσεων 184
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2022-01-15
Ημερομηνία Δημοσίευσης 2019-09-11
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Ricardo Carvalho
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://galdar.com.br/
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/Darciro/9gag-downloader
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "9gag Downloader",
    "version": "1.1",
    "description": "Extension to assist in sharing memes through the best humorous website 9GAG",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage",
        "tabs",
        "https:\/\/9gag.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/images\/9gag-icon-16.png",
            "32": "assets\/images\/9gag-icon-32.png",
            "48": "assets\/images\/9gag-icon-48.png",
            "64": "assets\/images\/9gag-icon-64.png",
            "128": "assets\/images\/9gag-icon-128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/9gag.com\/*"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "download.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2
}