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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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/
عنوان صفحة المساعدة 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
}