Plot your adventures through the web
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Browses",
"version": "2.3",
"description": "Plot your adventures through the web",
"background": {
"persistent": false,
"page": "background.html"
},
"browser_action": {
"default_icon": "icons/icon-24.png",
"default_title": "Browse"
},
"icons": {
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"permissions": [
"tabs",
"activeTab"
],
"externally_connectable": {
"matches": [
"*://browses.local/*",
"*://browses.io/*"
]
},
"content_security_policy": "script-src 'self' https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com; object-src 'self'",
"manifest_version": 2
}