NoFT
Chrome extension to auto-block NFT profile pictures on Twitter
ما هو NoFT؟
NoFT هو إضافة Chrome تم تطويرها بواسطة Ottomated، والميزة الرئيسية لها هي "Chrome extension to auto-block NFT profile pictures on Twitter".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة NoFT
قم بتنزيل ملفات الامتداد NoFT بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Tired of seeing hexagonal profile pictures? This extension automatically blocks or mutes every user that you come across with a verified NFT profile picture. معلومات أساسية عن التمديد
| الاسم | |
| ID | ignbemmolegaffpapcfpbadjnijbalfl |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/noft/ignbemmolegaffpapcfpbadjnijbalfl |
| الوصف | Chrome extension to auto-block NFT profile pictures on Twitter |
| حجم الملف | 139 KB |
| عدد التثبيتات | 4,506 |
| النسخة الحالية | 1.0.2 |
| آخر تحديث | 2022-01-30 |
| تاريخ النشر | 2022-01-22 |
| تقييم | 4.78/5 مجموع تقييمات 59 |
| المطور | Ottomated |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| عنوان صفحة سياسة الخصوصية | https://get.mogultv.org/privacy |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "NoFT",
"version": "1.0.2",
"description": "Chrome extension to auto-block NFT profile pictures on Twitter",
"background": {
"service_worker": "background.js",
"type": "module"
},
"icons": {
"16": "assets\/icon16.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"permissions": [
"storage",
"alarms",
"cookies"
],
"host_permissions": [
"*:\/\/*.twitter.com\/*"
],
"content_scripts": [
{
"js": [
"content\/import-index.js"
],
"matches": [
"*:\/\/*.twitter.com\/*"
]
}
],
"options_page": "pages\/popup\/index.html",
"action": {
"default_popup": "pages\/popup\/index.html"
},
"web_accessible_resources": [
{
"resources": [
"content\/closeInfoPopup.js",
"content\/autoBlock.js"
],
"matches": [
"*:\/\/*.twitter.com\/*"
]
},
{
"resources": [
"chunks\/*-*.js",
"content\/index.js"
],
"matches": [
"*:\/\/*.twitter.com\/*"
]
}
]
} | |