By default, the RescueTime Chrome extension doesn't report exact site usage because the extension determines browser usage by parsing the User Agent string in the request. So we need to fool the extension into thinking that we're using Chrome, not Chromium, which means it will accurately report usage statistics to RescueTime.
- Determine the extension's ID by visiting chrome://extensions
- If you have not done so before, check Developer mode in the top right.
- Locate the id of the RescueTime extension. It will look something like this:
ID: bdakmnplckeopfghnlpocafcepegjeap
- Navigate to the Chromium extensions location on your machine:
~/Library/Application Support/Chromium/Default/Extensions/{extension_id}/3.0.18_0
- Edit
RescueTimeUtil.js
to return the browser as being Chrome. See the example in RescueTimeUtil.js in this gist.
Thank you!