For testing you can also directly edit the Preferences file inside the Chrome profile. The path to the profile dir is shown in about:version. The Preferences file is a JSON file (edit with care :-) ), and to disable javascript you can place this there:
{
...
"profile": {
"default_content_settings": {
"javascript": 2
}
}
}
Look out for an existing "profile" entry, and for trailing commas. Otherwise this should work. You can also use the --user-data-dir switch to use another directory as the profile directory.