Get Random Gif

This extension adds a gif to your clipboard formatted as a markdown according to a specified tag

Co to jest Get Random Gif?

Get Random Gif to rozszerzenie Chrome opracowane przez demipel8, a jego główną funkcją jest „This extension adds a gif to your clipboard formatted as a markdown according to a specified tag”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Get Random Gif

Pobierz pliki rozszerzeń Get Random Gif 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

                        Make better acceptance messages with a random GIF. Ideal for pull request flows!                    

Podstawowe informacje o rozszerzeniu

Nazwa Get Random Gif Get Random Gif
ID lfcealbagbdlnbipcclbndgdmeogbmcl
Oficjalny URL https://chromewebstore.google.com/detail/get-random-gif/lfcealbagbdlnbipcclbndgdmeogbmcl
Opis This extension adds a gif to your clipboard formatted as a markdown according to a specified tag
Rozmiar pliku 28.4 KB
Liczba instalacji 49
Aktualna Wersja 1.0.3
Ostatnia Aktualizacja 2017-07-28
Data Publikacji 2017-07-28
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper demipel8
Typ Płatności free
Strona Rozszerzenia https://chrome.google.com/webstore/detail/get-random-gif/lfcealbagbdlnbipcclbndgdmeogbmcl?hl=en-GB&gl=ES
Adres URL Strony Pomocy https://github.com/demipel8/Random-gif-chrome-extension/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Get Random Gif",
    "description": "This extension adds a gif to your clipboard formatted as a markdown according to a specified tag",
    "version": "1.0.3",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html"
    },
    "author": "Demi [[email protected]]",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+A",
                "mac": "Command+Shift+A",
                "chromeos": "Ctrl+Shift+A",
                "linux": "Ctrl+Shift+A"
            },
            "description": "Get gif"
        }
    },
    "minimum_chrome_version": "45.0",
    "offline_enabled": false,
    "options_ui": {
        "page": "options.html",
        "chrome_style": false
    },
    "permissions": [
        "clipboardWrite",
        "https:\/\/tbdsa3t4af.execute-api.us-east-2.amazonaws.com\/v1\/*",
        "storage"
    ],
    "short_name": "GRG"
}