Hacker News new | ask | show | jobs
by spuz 2152 days ago
If you don't want to install a 3rd party extension (maybe it seems like too much of a risk for such a frivolous purpose), then you can make your own. Just download hacker95.css and create a file called manifest.json in the same directory with these contents:

{ "name": "Hacker News 95 Extension", "version": "1.0", "description": "Hacker News 95 Extension", "permissions": ["activeTab"], "content_scripts": [ { "matches": ["https://new.ycombinator.com/*"], "css": ["hacker95.css"] } ], "manifest_version": 2 }

Then in your Chrome Extensions settings, find the option to "Load unpacked extension" and point it to your directory.

1 comments

So my anti-procrastination setting kicked in just as I made this comment and now I can neither edit it or delete it. I made the same comment again with proper formatting of the json file.