mirror of
https://github.com/jambonz/chrome-extension-dialer.git
synced 2025-12-19 04:47:45 +00:00
18 lines
381 B
JSON
18 lines
381 B
JSON
{
|
|
"version": "1.0.0",
|
|
"manifest_version": 3,
|
|
"name": "Webrtc Chrome Extension",
|
|
"description": "Webrtc Chrome Extension",
|
|
"action": {
|
|
"default_popup": "js/index.html",
|
|
"default_title": "Webrtc Chrome Extension"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["js/content.js"]
|
|
}
|
|
],
|
|
"permissions": ["activeTab", "storage"]
|
|
}
|