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"
    ]
}