Luckydog Winner Generator Tool 2020
Parse FB comments/reactions/shares and import them into Luckydog Winner Generator
Cos'è Luckydog Winner Generator Tool 2020?
Luckydog Winner Generator Tool 2020 è un'estensione di Chrome sviluppata da https://www.luckydog.tw, e la sua funzione principale è "Parse FB comments/reactions/shares and import them into Luckydog Winner Generator".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Luckydog Winner Generator Tool 2020
Scarica i file di estensione Luckydog Winner Generator Tool 2020 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
If you need to combine "comment", "reaction" and "share" as qualifier for drawing, or you need to use luckydog's winner form, you need to use luckydog chrome extension to fetch and parse "comment", "reaction" and "share" and then import to the luckydog chrome extension winner generator.
Informazioni di Base sull'Estensione
Nome | Luckydog Winner Generator Tool 2020 |
ID | fhhappeemmamffhkmaebfhnimglfjkao |
URL Ufficiale | https://chromewebstore.google.com/detail/luckydog-winner-generator/fhhappeemmamffhkmaebfhnimglfjkao |
Descrizione | Parse FB comments/reactions/shares and import them into Luckydog Winner Generator |
Dimensione del File | 65.36 KB |
Conteggio Installazioni | 5,166 |
Versione Corrente | 4.3.0 |
Ultimo Aggiornamento | 2022-06-06 |
Data di Pubblicazione | 2020-07-31 |
Sviluppatore | https://www.luckydog.tw |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.luckydog.tw/winnervip/chrome-extension |
URL della Pagina della Politica sulla Privacy | https://www.luckydog.tw/jsp/help/privacy.jsp |
Lingue Supportate | en,zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Luckydog Winner Generator Tool 2020", "description": "Parse FB comments\/reactions\/shares and import them into Luckydog Winner Generator", "version": "4.3.0", "default_locale": "en", "page_action": { "default_popup": "popup.html", "default_title": "Luckydog Extension" }, "icons": { "16": "logo-small.png", "128": "logo-large.png" }, "background": { "scripts": [ "jquery-3.2.1.min.js", "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.facebook.com\/*" ], "js": [ "jquery-3.2.1.min.js", "content_facebook.js" ] }, { "matches": [ "*:\/\/localhost\/*", "*:\/\/*.luckydog.tw\/*" ], "js": [ "jquery-3.2.1.min.js", "bootstrap-4.0.0.min.js", "content_luckydog.js" ] } ], "web_accessible_resources": [ "jquery-3.2.1.min.js" ], "permissions": [ "tabs", "declarativeContent" ] } |