Media Grabber
Get the media URL of a page's most recently played audio/video (and then do something with it).
Co to jest Media Grabber?
Media Grabber to rozszerzenie Chrome opracowane przez camerongu3, a jego główną funkcją jest „Get the media URL of a page's most recently played audio/video (and then do something with it).”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Media Grabber
Pobierz pliki rozszerzeń Media Grabber w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Chrome extension to show the media URL of a page's most recently played audio/video as an easy alternative to looking at the network tab in dev tools *Instructions:* https://github.com/camreon/media-grabber/blob/master/README.md
Podstawowe informacje o rozszerzeniu
Nazwa | Media Grabber |
ID | ompogmmmcfgapifeghieaklpblkkoloo |
Oficjalny URL | https://chromewebstore.google.com/detail/media-grabber/ompogmmmcfgapifeghieaklpblkkoloo |
Opis | Get the media URL of a page's most recently played audio/video (and then do something with it). |
Rozmiar pliku | 45.6 KB |
Liczba instalacji | 6,486 |
Aktualna Wersja | 1.2 |
Ostatnia Aktualizacja | 2021-02-09 |
Data Publikacji | 2016-06-05 |
Ocena | 2.80/5 Łącznie 20 Oceny |
Deweloper | camerongu3 |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Pomocy | https://github.com/camreon/media-grabber/blob/master/README.md |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Media Grabber", "version": "1.2", "description": "Get the media URL of a page's most recently played audio\/video (and then do something with it).", "icons": { "48": "icon\/icon48.png", "128": "icon\/icon128.png" }, "background": { "scripts": [ "js\/background.js" ], "persistent": true }, "page_action": { "default_icon": "icon\/icon.png", "default_popup": "popup.html" }, "permissions": [ "webRequest", "tabs", "storage", "http:\/\/*\/*", "https:\/\/*\/*", "bookmarks" ], "options_ui": { "page": "options.html", "chrome_style": true }, "manifest_version": 2, "content_security_policy": "script-src 'self' https:\/\/code.jquery.com; object-src 'self'" } |