Monitor and display streaming media URLs on the active tab.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "Media URL Sniffer",
"version": "1.0",
"description": "Monitor and display streaming media URLs on the active tab.",
"permissions": [
"webRequest",
"webRequestBlocking",
"<all_urls>",
"activeTab",
"clipboardWrite"
],
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": "icon.png"
},
"icons": {
"48": "icon.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{e1394a35-fb79-45de-902e-76dbafb89522}"
}
}
}