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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 معلومات أساسية عن التمديد
| الاسم | |
| 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"
]
}
]
} | |