Inspect and view changes in SheetAside source codes across current and past versions
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",
"manifest_version": 2,
"name": "SheetAside",
"description": "Collect data to a spreadsheet with less clicks.",
"version": "1.1",
"browser_action": {
"default_icon": "icon.png",
"default_title": "SheetAside"
},
"icons": {
"16": "mashroom_logo.png",
"48": "mashroom_logo.png",
"128": "mashroom_logo.png"
},
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"activeTab",
"contextMenus"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"content.css"
]
}
]
}