9gag Downloader
Extension to assist in sharing memes through the best humorous website 9GAG
Co to jest 9gag Downloader?
9gag Downloader to rozszerzenie Chrome opracowane przez Ricardo Carvalho, a jego główną funkcją jest „Extension to assist in sharing memes through the best humorous website 9GAG”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia 9gag Downloader
Pobierz pliki rozszerzeń 9gag Downloader 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
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.
Podstawowe informacje o rozszerzeniu
Nazwa | 9gag Downloader |
ID | cipeepjilkbilfmpjalegdlgmgoimjii |
Oficjalny URL | https://chromewebstore.google.com/detail/9gag-downloader/cipeepjilkbilfmpjalegdlgmgoimjii |
Opis | Extension to assist in sharing memes through the best humorous website 9GAG |
Rozmiar pliku | 276 KB |
Liczba instalacji | 184 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2022-01-15 |
Data Publikacji | 2019-09-11 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Ricardo Carvalho |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | http://galdar.com.br/ |
Adres URL Strony Pomocy | https://github.com/Darciro/9gag-downloader |
Obsługiwane Języki | 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 } |