Return YouTube Dislikes Counter
Returning the ability to see the number of dislikes
Vad är Return YouTube Dislikes Counter?
Return YouTube Dislikes Counter är en Chrome-tillägg utvecklad av Kronus, och dess huvudfunktion är "Returning the ability to see the number of dislikes".
Tilläggsskärmbilder
Ladda ner Return YouTube Dislikes Counter-förlängningens CRX-fil
Ladda ner Return YouTube Dislikes Counter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
The extension returns the ability to see how many people have put dislikes.
Grundläggande Information om Tillägg
Namn | |
ID | oljgiamaflelpmdlmdjpooahpmiobclo |
Officiell webbadress | https://chrome.google.com/webstore/detail/return-youtube-dislikes-c/oljgiamaflelpmdlmdjpooahpmiobclo |
Beskrivning | Returning the ability to see the number of dislikes |
Filstorlek | 16.96 KB |
Antal Installationer | 161 |
Aktuell Version | 1.2 |
Senast Uppdaterad | 2021-12-23 |
Publiceringsdatum | 2021-11-30 |
Utvecklare | Kronus |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Return YouTube Dislikes Counter", "description": "Returning the ability to see the number of dislikes", "version": "1.2", "manifest_version": 3, "background": { "service_worker": "ryd.background.js" }, "icons": { "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "permissions": [ "storage" ], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/youtube.com\/*", "*:\/\/www.youtube.com\/*", "*:\/\/m.youtube.com\/*" ], "exclude_matches": [ "*:\/\/*.music.youtube.com\/*" ], "js": [ "bundled-content-script.js" ], "css": [ "content-style.css" ] } ], "externally_connectable": { "matches": [ "*:\/\/*.youtube.com\/*" ] }, "web_accessible_resources": [ { "resources": [ "ryd.script.js" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ] } |