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
}