Media Grabber
Get the media URL of a page's most recently played audio/video (and then do something with it).
Τι είναι το Media Grabber;
Το Media Grabber είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον camerongu3, και η κύρια λειτουργία του είναι "Get the media URL of a page's most recently played audio/video (and then do something with it).".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Media Grabber
Λήψη αρχείων επέκτασης Media Grabber σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | Media Grabber |
ID | ompogmmmcfgapifeghieaklpblkkoloo |
Επίσημο URL | https://chromewebstore.google.com/detail/media-grabber/ompogmmmcfgapifeghieaklpblkkoloo |
Περιγραφή | Get the media URL of a page's most recently played audio/video (and then do something with it). |
Μέγεθος Αρχείου | 45.6 KB |
Αριθμός Εγκαταστάσεων | 6,486 |
Τρέχουσα Έκδοση | 1.2 |
Τελευταία Ενημέρωση | 2021-02-09 |
Ημερομηνία Δημοσίευσης | 2016-06-05 |
Αξιολόγηση | 2.80/5 Συνολικά 20 Αξιολογήσεις |
Προγραμματιστής | camerongu3 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/camreon/media-grabber/blob/master/README.md |
Υποστηριζόμενες Γλώσσες | 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'" } |