Stacko Taco
This chrome extension is for people who just can't get enough tacos!
Stacko Tacoคืออะไร?
Stacko Taco เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "This chrome extension is for people who just can't get enough tacos!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Stacko Taco
ดาวน์โหลดไฟล์ส่วนขยาย Stacko Taco ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension is here to add some light-heartedness to your life when you are deep in thought and despair trying to fix some broken code and end up on Stack Overflow. One thing is for sure that when I'm down, tacos lift me up and give me wings. So hopefully, these tacos will give you the spirit and joy that you deserve. Because everyone loves tacos.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Stacko Taco |
ID | dklaccacmampgfejkkkcbgchkafhfgoa |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/stacko-taco/dklaccacmampgfejkkkcbgchkafhfgoa |
คำอธิบาย | This chrome extension is for people who just can't get enough tacos! |
ขนาดไฟล์ | 22.03 KB |
จำนวนการติดตั้ง | 143 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2019-02-23 |
วันที่เผยแพร่ | 2019-02-22 |
ผู้พัฒนา | Unknown |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Stacko Taco", "version": "1.0", "manifest_version": 2, "description": "This chrome extension is for people who just can't get enough tacos!", "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": "icon.png", "default_title": "Stacko Taco", "default_popup": "overlay.html" }, "content_scripts": [ { "css": [ "css\/styles.css" ], "js": [ "js\/overlay.js" ], "matches": [ "https:\/\/stackoverflow.com\/*" ] } ] } |