GIF Adder

This extension let's you easily save GIFs for easy forum post reference.

GIF Adderคืออะไร?

GIF Adder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Robert และคุณลักษณะหลักของมันคือ "This extension let's you easily save GIFs for easy forum post reference."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GIF Adder

ดาวน์โหลดไฟล์ส่วนขยาย GIF Adder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Have some favorite GIFs you enjoy using over and over again?  GIF Adder makes it really easy to reference all of your favorite GIFs anytime.  Have a GIF you'd like to save?  Just right-click on it, save it with a name you'll remember and it is added to your list of GIFs.  

On a forum and ready to use your GIF?  Just right-click and find the GIF you'd like to use.

You can view your list of GIFs in the extension's popup window.  Clicking on any GIF in this popup will remove it from your list of saved GIFs.

If you don't post on forums, and just want the link without the forum tags, simply open up the pop-up and choose "Plain URL" to get just the URL without the forum tag wrappers.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ GIF Adder GIF Adder
ID jjbibkgffndgflndegepoplnadanhjpi
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/gif-adder/jjbibkgffndgflndegepoplnadanhjpi
คำอธิบาย This extension let's you easily save GIFs for easy forum post reference.
ขนาดไฟล์ 7.98 KB
จำนวนการติดตั้ง 281
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2015-02-02
วันที่เผยแพร่ 2015-02-02
คะแนน 3.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Robert
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GIF Adder",
    "description": "This extension let's you easily save GIFs for easy forum post reference.",
    "version": "1.1",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "",
        "contextMenus",
        "tabs",
        "storage"
    ]
}