Luckydog Winner Generator Tool
Parse FB comments/reactions/shares and import them into Luckydog Winner Generator
What is Luckydog Winner Generator Tool?
Luckydog Winner Generator Tool is a Chrome extension developed by https://www.luckydog.tw, and its main feature is "Parse FB comments/reactions/shares and import them into Luckydog Winner Generator".
Extension Screenshots
Download Luckydog Winner Generator Tool Extension CRX File
Download Luckydog Winner Generator Tool extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Luckydog Winner Generator Tool |
ID | fjjmlofpfnccdaiplopjkgeifgbhiccl |
Official URL | https://chromewebstore.google.com/detail/luckydog-winner-generator/fjjmlofpfnccdaiplopjkgeifgbhiccl |
Description | Parse FB comments/reactions/shares and import them into Luckydog Winner Generator |
File Size | 62.9 KB |
Installation Count | 2,224 |
Current Version | 1.3.6 |
Last Updated | 2020-04-12 |
Publish Date | 2020-04-08 |
Developer | https://www.luckydog.tw |
[email protected] | |
Payment Type | free |
Extension Website | https://www.luckydog.tw/winnervip/chrome-extension |
Privacy Policy Page URL | https://www.luckydog.tw/jsp/help/privacy.jsp |
Supported Languages | en,zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Luckydog Winner Generator Tool", "description": "Parse FB comments\/reactions\/shares and import them into Luckydog Winner Generator", "version": "1.3.6", "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" ] } |