Kino: The cinematic video player
Larger than large viewer on youtube.com. Smaller than fullscreen.
Vad är Kino: The cinematic video player?
Kino: The cinematic video player är en Chrome-tillägg utvecklad av marco.m.alves, och dess huvudfunktion är "Larger than large viewer on youtube.com. Smaller than fullscreen.".
Tilläggsskärmbilder
Ladda ner Kino: The cinematic video player-förlängningens CRX-fil
Ladda ner Kino: The cinematic video player-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
What is it?
You want to see the code on the video but you don't want to use fullscreen mode?
Kino provides you a player larger than the large player on youtube.com but without using fullscreen mode.
It's great for watching tutorials that have a lot of code examples.
How to use it?
Every time the extension detects a video on a page it signals you with a video player icon inside chrome's omnibox.
If you click the video player icon, you will redirected to Kino website where the video in starting page will be loaded in a cinematic view. Grundläggande Information om Tillägg
| Namn | |
| ID | fcjajigcchohdknfaommjppceglkabod |
| Officiell webbadress | https://chromewebstore.google.com/detail/kino-the-cinematic-video/fcjajigcchohdknfaommjppceglkabod |
| Beskrivning | Larger than large viewer on youtube.com. Smaller than fullscreen. |
| Filstorlek | 812 KB |
| Antal Installationer | 95 |
| Aktuell Version | 0.0.1 |
| Senast Uppdaterad | 2013-07-11 |
| Publiceringsdatum | 2013-07-11 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | marco.m.alves |
| Betalningssätt | free |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Kino: The cinematic video player",
"version": "0.0.1",
"manifest_version": 2,
"description": "Larger than large viewer on youtube.com. Smaller than fullscreen.",
"icons": {
"16": "icons\/kino-16.png",
"48": "icons\/kino-48.png",
"128": "icons\/kino-128.png"
},
"background": {
"page": "src\/bg\/background.html"
},
"page_action": {
"default_icon": "icons\/kino-19.png",
"default_title": "Kino"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"lib\/jquery\/jquery.js",
"src\/inject\/inject.js"
]
}
]
} | |