Video Brightness Adjuster
Adjusts the brightness of the video to make dark scenes more visible.
Vad är Video Brightness Adjuster?
Video Brightness Adjuster är en Chrome-tillägg utvecklad av あんこだま, och dess huvudfunktion är "Adjusts the brightness of the video to make dark scenes more visible.".
Tilläggsskärmbilder
Ladda ner Video Brightness Adjuster-förlängningens CRX-fil
Ladda ner Video Brightness Adjuster-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
You can adjust the brightness when scenes in movies and the like are dark and difficult to see. It's possible to adjust three types: brightness, contrast, and saturation. Grundläggande Information om Tillägg
| Namn | |
| ID | enphljmfhkhhfiphjclikhmclddopmpe |
| Officiell webbadress | https://chromewebstore.google.com/detail/video-brightness-adjuster/enphljmfhkhhfiphjclikhmclddopmpe |
| Beskrivning | Adjusts the brightness of the video to make dark scenes more visible. |
| Filstorlek | 78.54 KB |
| Antal Installationer | 211 |
| Aktuell Version | 1.2.0 |
| Senast Uppdaterad | 2023-06-19 |
| Publiceringsdatum | 2023-05-10 |
| Betyg | 3.00/5 Totalt 2 Betyg |
| Utvecklare | あんこだま |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | en,ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"default_locale": "en",
"name": "__MSG_extensionName__",
"version": "1.2.0",
"icons": {
"16": "icons\/16.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
},
"description": "__MSG_extensionDescription__",
"action": {
"default_popup": "index.html",
"default_icon": {
"16": "icons\/16.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
}
},
"permissions": [
"activeTab",
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"js": [
"scripts\/content.js"
]
}
]
} | |