Luckydog Winner Generator Tool
Parse FB comments/reactions/shares and import them into Luckydog Winner Generator
Luckydog Winner Generator Toolคืออะไร?
Luckydog Winner Generator Tool เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.luckydog.tw และคุณลักษณะหลักของมันคือ "Parse FB comments/reactions/shares and import them into Luckydog Winner Generator"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Luckydog Winner Generator Tool
ดาวน์โหลดไฟล์ส่วนขยาย Luckydog Winner Generator Tool ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Luckydog Winner Generator Tool |
ID | fjjmlofpfnccdaiplopjkgeifgbhiccl |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/luckydog-winner-generator/fjjmlofpfnccdaiplopjkgeifgbhiccl |
คำอธิบาย | Parse FB comments/reactions/shares and import them into Luckydog Winner Generator |
ขนาดไฟล์ | 62.9 KB |
จำนวนการติดตั้ง | 2,224 |
เวอร์ชันปัจจุบัน | 1.3.6 |
อัปเดตครั้งล่าสุด | 2020-04-12 |
วันที่เผยแพร่ | 2020-04-08 |
ผู้พัฒนา | https://www.luckydog.tw |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.luckydog.tw/winnervip/chrome-extension |
URL หน้านโยบายความเป็นส่วนตัว | https://www.luckydog.tw/jsp/help/privacy.jsp |
ภาษาที่รองรับ | 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" ] } |