Files
headless-recorder/src/manifest.json
2021-06-10 10:42:03 -03:00

40 lines
919 B
JSON

{
"name": "Headless Recorder",
"version": "1.0.0",
"manifest_version": 2,
"homepage_url": "http://localhost:8080/",
"description": "A Chrome extension for recording browser interaction and generating Puppeteer & Playwright scripts",
"default_locale": "en",
"permissions": [
"storage",
"webNavigation",
"activeTab",
"contextMenus",
"*://*/"
],
"icons" : {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"background": {
"scripts": [
"js/background.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "popup.html",
"default_title": "__MSG_extName__",
"default_icon": {
"19": "icons/19.png",
"38": "icons/38.png"
}
},
"options_ui": {
"page": "options.html",
"browser_style": true
}
}