Video Controls for Instagram
Enables video controls on instagram
Hvad er Video Controls for Instagram?
Video Controls for Instagram er en Chrome-udvidelse udviklet af David Ćavar, og dens hovedfunktion er "Enables video controls on instagram".
Udvidelsesskærmbilleder
Download Video Controls for Instagram-udvidelses-CRX-fil
Download Video Controls for Instagram-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Enables controls for videos inside your Instagram feed (seek, full screen, volume change, play, pause) Defaults video volume to 50%, and saves the setting if changed
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | fbfifojpjhfeiiefgbddgkabhjhkofkf |
Officiel URL | https://chrome.google.com/webstore/detail/video-controls-for-instag/fbfifojpjhfeiiefgbddgkabhjhkofkf |
Beskrivelse | Enables video controls on instagram |
Filstørrelse | 12.9 KB |
Antal Installationer | 183 |
Nuværende Version | 1.3.0 |
Senest Opdateret | 2019-11-21 |
Udgivelsesdato | 2019-11-21 |
Bedømmelse | 3.00/5 Samlet 2 Bedømmelser |
Udvikler | David Ćavar |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/Palethorn/video-controls-for-instagram |
Hjælpeside-URL | https://github.com/Palethorn/video-controls-for-instagram/issues |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video Controls for Instagram", "version": "1.3.0", "manifest_version": 2, "applications": { "gecko": { "id": "[email protected]" } }, "description": "Enables video controls on instagram", "icons": { "128": "icon128.png" }, "browser_action": { "default_icon": "icon128.png", "default_popup": "menu.html" }, "content_scripts": [ { "matches": [ "http:\/\/www.instagram.com\/*", "https:\/\/www.instagram.com\/*" ], "js": [ "content.js" ] } ], "permissions": [ "activeTab", "storage" ], "options_ui": { "page": "options.html", "chrome_style": true } } |