Media Carousel
Displays all embedded and linked media on the current page in a carousel.
Vad är Media Carousel?
Media Carousel är en Chrome-tillägg utvecklad av Blaise Kal, och dess huvudfunktion är "Displays all embedded and linked media on the current page in a carousel.".
Tilläggsskärmbilder
Ladda ner Media Carousel-förlängningens CRX-fil
Ladda ner Media Carousel-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
View a short demo video of Media Carousel: https://streamable.com/89j2y
Hotkey: Ctrl+Shift+M, on Mac: Cmd+Shift+M.
Contains bugs by nature. Please report bugs and feature requests on GitHub at https://github.com/blaise-io/media-carousel/ or send an email to [email protected]. Grundläggande Information om Tillägg
| Namn | |
| ID | lianhpbcenefikhbnkbdgjfghpgdfffn |
| Officiell webbadress | https://chromewebstore.google.com/detail/media-carousel/lianhpbcenefikhbnkbdgjfghpgdfffn |
| Beskrivning | Displays all embedded and linked media on the current page in a carousel. |
| Filstorlek | 84.93 KB |
| Antal Installationer | 18 |
| Aktuell Version | 1.2.2 |
| Senast Uppdaterad | 2019-11-18 |
| Publiceringsdatum | 2019-11-18 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | Blaise Kal |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/blaise-io/media-carousel#readme |
| Hjälpsida URL | https://github.com/blaise-io/media-carousel/issues |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Media Carousel",
"version": "1.2.2",
"description": "Displays all embedded and linked media on the current page in a carousel.",
"homepage_url": "https:\/\/github.com\/blaise-io\/media-carousel#readme",
"permissions": [
"activeTab",
"storage"
],
"background": {
"scripts": [
"\/background.js"
]
},
"icons": {
"128": "\/icons\/icon.png"
},
"browser_action": {
"default_icon": "\/icons\/icon.png"
},
"web_accessible_resources": [
"\/carousel.html"
],
"options_ui": {
"page": "\/options.html"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+M",
"windows": "Ctrl+Shift+M",
"linux": "Ctrl+Shift+M",
"mac": "Command+Shift+M"
}
}
}
} | |