Inspect and view changes in Space Remover: Text Field Trimmer 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
{
"manifest_version": 2,
"name": "Space Stripping Extension",
"version": "1.0",
"description": "Strips leading and trailing spaces from text boxes",
"icons": {
"16": "images/favicon-16x16.png",
"32": "images/favicon-32x32.png",
"48": "images/favicon-48x48.png",
"128": "images/favicon-128x128.png"
},
"permissions": [
"activeTab",
"tabs"
],
"browser_action": {
"default_title": "Strip Spaces"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"scripts/content.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{a2f8e88d-5998-46e8-9637-bb5661aa2806}"
}
}
}