Changes jsbeautifier.org to have 4 spaces, no wrap, and be JSLint-happy by default.
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": "JS Beautifier settings tweaks",
"description": "Changes jsbeautifier.org to have 4 spaces, no wrap, and be JSLint-happy by default.",
"version": "0.3.3",
"icons": {
"128": "jsbeautifierSettingsTweaks__icon.png"
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"http://jsbeautifier.org/",
"http://jsbeautifier.org/*",
"https://beautifier.io/",
"https://beautifier.io/*"
],
"js": [
"jsbeautifierSettingsTweaks.js"
]
}
]
}