GIF Adder

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

Co to jest GIF Adder?

GIF Adder to rozszerzenie Chrome opracowane przez Robert, a jego główną funkcją jest „This extension let's you easily save GIFs for easy forum post reference.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia GIF Adder

Pobierz pliki rozszerzeń GIF Adder w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa GIF Adder GIF Adder
ID jjbibkgffndgflndegepoplnadanhjpi
Oficjalny URL https://chrome.google.com/webstore/detail/gif-adder/jjbibkgffndgflndegepoplnadanhjpi
Opis This extension let's you easily save GIFs for easy forum post reference.
Rozmiar pliku 7.98 KB
Liczba instalacji 281
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2015-02-02
Data Publikacji 2015-02-02
Ocena 3.67/5 Łącznie 3 Oceny
Deweloper Robert
Typ Płatności free
Obsługiwane Języki 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"
    ]
}