Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "__MSG_extName__",
"homepage_url": "https:\/\/sensilet.com\/",
"description": "A Browser Extension Wallet",
"default_locale": "en",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"permissions": [
"storage",
"activeTab"
],
"icons": {
"48": "icons\/48.png",
"128": "icons\/128.png"
},
"background": {
"scripts": [
"js\/background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"js\/content-script.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"web_accessible_resources": [
"script.js"
],
"browser_action": {
"default_popup": "popup.html",
"default_title": "__MSG_extName__",
"default_icon": {
"48": "icons\/48.png"
}
},
"version": "0.2.2"
}