Slacky - Memes as a Service
Create all the memes directly from your browser
Cos'è Slacky - Memes as a Service?
Slacky - Memes as a Service è un'estensione di Chrome sviluppata da https://slacky-server.herokuapp.com, e la sua funzione principale è "Create all the memes directly from your browser".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Slacky - Memes as a Service
Scarica i file di estensione Slacky - Memes as a Service in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Tired of creating memes by visiting websites, uploading images and copying links? Slacky provides a simple way to create memes directly in your browser! Simply provide a search term or image url and the text in the following way: cute kitten | omg | kittens! http://images.com/doge.jpg | so meme | very happiness This is brand new so I'd be grateful for constructive feedback. See more examples on the website https://slacky-server.herokuapp.com Release notes ------------- v0.1.1 A more stable and robust approach which should make the display consistent across tabs and websites
Informazioni di Base sull'Estensione
Nome | |
ID | nikjbdhcbfledkekdacecmegploaelpe |
URL Ufficiale | https://chrome.google.com/webstore/detail/slacky-memes-as-a-service/nikjbdhcbfledkekdacecmegploaelpe |
Descrizione | Create all the memes directly from your browser |
Dimensione del File | 210 KB |
Conteggio Installazioni | 108 |
Versione Corrente | 0.1.1 |
Ultimo Aggiornamento | 2015-12-03 |
Data di Pubblicazione | 2015-12-03 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | https://slacky-server.herokuapp.com |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://slacky-server.herokuapp.com |
URL della Pagina di Aiuto | https://slacky-server.herokuapp.com |
Lingue Supportate | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Slacky - Memes as a Service", "description": "Create all the memes directly from your browser", "version": "0.1.1", "icons": { "16": "slacky-16.png", "32": "slacky-32.png", "64": "slacky-64.png", "128": "slacky-128.png" }, "browser_action": { "default_icon": "slacky-64.png", "default_popup": "panel.html" }, "background": { "scripts": [ "jquery.js", "utils.js", "index.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "jquery.js", "utils.js", "window.js" ] } ], "permissions": [ "activeTab", "http:\/\/*\/*", "https:\/\/*\/*", "storage", "clipboardWrite" ], "web_accessible_resources": [ "businesscat.png", "loading.gif" ] } |