Youtube Dislike Count Extention
This extention enables the YouTube dislike count!
ما هو Youtube Dislike Count Extention؟
Youtube Dislike Count Extention هو إضافة Chrome تم تطويرها بواسطة Ausama95، والميزة الرئيسية لها هي "This extention enables the YouTube dislike count!".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Youtube Dislike Count Extention
قم بتنزيل ملفات الامتداد Youtube Dislike Count Extention بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension brings back the ability to be able to see the dislike ratio of any YouTube video.
معلومات أساسية عن التمديد
الاسم | |
ID | ihelhpoojojegneekjecpiobfkbfcibi |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/youtube-dislike-count-ext/ihelhpoojojegneekjecpiobfkbfcibi |
الوصف | This extention enables the YouTube dislike count! |
حجم الملف | 24.13 KB |
عدد التثبيتات | 105 |
النسخة الحالية | 0.2 |
آخر تحديث | 2022-01-25 |
تاريخ النشر | 2022-01-24 |
تقييم | 4.00/5 مجموع تقييمات 4 |
المطور | Ausama95 |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Dislike Count Extention", "description": "This extention enables the YouTube dislike count!", "version": "0.2", "manifest_version": 3, "background": { "service_worker": ".\/background.js" }, "options_page": "options.html", "permissions": [ "storage", "scripting" ], "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "action": { "default_popup": "popup.html", "default_icon": { "16": ".\/images\/obj-16x16.png", "32": ".\/images\/obj-32x32.png", "48": ".\/images\/obj-48x48.png", "128": ".\/images\/obj-128x128.png" } }, "icons": { "16": ".\/images\/obj-16x16.png", "32": ".\/images\/obj-32x32.png", "48": ".\/images\/obj-48x48.png", "128": ".\/images\/obj-128x128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content-script.js" ], "run_at": "document_start", "css": [ "content-style.css" ] } ], "externally_connectable": { "matches": [ "*:\/\/*.youtube.com\/*" ] }, "web_accessible_resources": [ { "resources": [ "script.js" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ] } |