Media Grabber
Get the media URL of a page's most recently played audio/video (and then do something with it).
Vad är Media Grabber?
Media Grabber är en Chrome-tillägg utvecklad av camerongu3, och dess huvudfunktion är "Get the media URL of a page's most recently played audio/video (and then do something with it).".
Tilläggsskärmbilder
Ladda ner Media Grabber-förlängningens CRX-fil
Ladda ner Media Grabber-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
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 Grundläggande Information om Tillägg
| Namn | |
| ID | ompogmmmcfgapifeghieaklpblkkoloo |
| Officiell webbadress | https://chromewebstore.google.com/detail/media-grabber/ompogmmmcfgapifeghieaklpblkkoloo |
| Beskrivning | Get the media URL of a page's most recently played audio/video (and then do something with it). |
| Filstorlek | 45.6 KB |
| Antal Installationer | 6,486 |
| Aktuell Version | 1.2 |
| Senast Uppdaterad | 2021-02-09 |
| Publiceringsdatum | 2016-06-05 |
| Betyg | 2.80/5 Totalt 20 Betyg |
| Utvecklare | camerongu3 |
| E-post | [email protected] |
| Betalningssätt | free |
| Hjälpsida URL | https://github.com/camreon/media-grabber/blob/master/README.md |
| Stödda Språk | 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'"
} | |