MagicNumbers
Find&Preview your magic number with this extension!
MagicNumbers क्या है?
MagicNumbers underscorestarchaser द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Find&Preview your magic number with this extension!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में MagicNumbers एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } ] } |