YouTube Screenshot
Save Take screenshots from YouTube video
Vad är YouTube Screenshot?
YouTube Screenshot är en Chrome-tillägg utvecklad av info, och dess huvudfunktion är "Save Take screenshots from YouTube video".
Tilläggsskärmbilder
Ladda ner YouTube Screenshot-förlängningens CRX-fil
Ladda ner YouTube Screenshot-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
A small add-on to take screenshots of YouTube videos with one click. - This add-on is completely free to use. - This add-on adds an extra button in the YouTube player to take a screenshot of the video.
Grundläggande Information om Tillägg
Namn | |
ID | mdblbmmnmgoglgggphofecocdniamacg |
Officiell webbadress | https://chrome.google.com/webstore/detail/youtube-screenshot/mdblbmmnmgoglgggphofecocdniamacg |
Beskrivning | Save Take screenshots from YouTube video |
Filstorlek | 164 KB |
Antal Installationer | 230 |
Aktuell Version | 2.0.0 |
Senast Uppdaterad | 2022-12-05 |
Publiceringsdatum | 2022-12-05 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | info |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Screenshot", "description": "Save Take screenshots from YouTube video", "manifest_version": 3, "version": "2.0.0", "background": { "service_worker": "worker.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ], "permissions": [ "alarms", "storage", "webRequest" ], "host_permissions": [ "*:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "*:\/\/*\/*" ] } ], "options_ui": { "page": "options\/index.html" }, "icons": { "128": "icons\/icon.png" } } |