MagicNumbers
Find&Preview your magic number with this extension!
MagicNumbersคืออะไร?
MagicNumbers เป็นส่วนขยายของ Chrome ที่พัฒนาโดย underscorestarchaser และคุณลักษณะหลักของมันคือ "Find&Preview your magic number with this extension!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MagicNumbers
ดาวน์โหลดไฟล์ส่วนขยาย MagicNumbers ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Are you bored? CTRL+C and CTRL+V too much time Now it easy! You only highlight some magicnumber and right click now you can "warp" to nhentai or you can doubleclick on magicnumber to preview it <3
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | MagicNumbers |
ID | eachmpbcaoeffcmbeokmafkgdaffedpi |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/magicnumbers/eachmpbcaoeffcmbeokmafkgdaffedpi |
คำอธิบาย | Find&Preview your magic number with this extension! |
ขนาดไฟล์ | 56.42 KB |
จำนวนการติดตั้ง | 162 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2020-04-02 |
วันที่เผยแพร่ | 2020-03-31 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | underscorestarchaser |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://starchaser.me/magic_numbers |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "MagicNumbers", "description": "Find&Preview your magic number with this extension!", "version": "1.0", "browser_action": { "default_icon": "icons\/32.png" }, "icons": { "16": "icons\/16.png", "32": "icons\/32.png", "64": "icons\/64.png", "128": "icons\/128.png" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "storage", "contextMenus" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_script.js" ], "css": [ "style.css" ] } ] } |