Screenshot

4chan X is a script that adds various features to anonymous imageboards. It was originally developed for 4chan but has no affiliation with it.

It was previously developed by aeosynth, Mayhem, ihavenoface, Zixaphir, Seaweed, and Spittie, with contributions from many others.

If you're looking for a maintained fork of OneeChan (a style script used in addition to 4chan X), try https://github.com/KevinParnell/OneeChan.

Please note

Uninstalling: 4chan X disables the native extension, so if you uninstall 4chan X, you'll need to re-enable it. To do this, click the [Settings] link in the top right corner, uncheck "Disable the native extension" in the panel that appears, and click the "Save Settings" button. If you don't see a "Save Settings" button, it may be being hidden by your ad blocker.

Private browsing: By default, 4chan X remembers your last read post in a thread and which posts were made by you, even if you are in private browsing / incognito mode. If you want to turn this off, uncheck the Remember Last Read Post and Remember Your Posts options in the settings panel. You can clear all 4chan browsing history saved by 4chan X by resetting your settings.

Use of the "Link Title" feature to fetch titles of Youtube links is subject to Youtube's Terms of Service and Privacy Policy. For more details on what information is sent to Youtube and other sites, and how to turn it off if you don't want the feature, see 4chan X's privacy documentation.

Install

Install Violentmonkey, Tampermonkey, or Greasemonkey (issues since v4: #2526, #2576), then click here to install 4chan X.

Ports of Greasemonkey are available for SeaMonkey and Pale Moon.

Userscript: Install Violentmonkey or Tampermonkey, then click here to install 4chan X.

Chrome extension: 4chan X is also available as a standalone Chrome extension. The Chrome extension has the additional feature of being able to sync your settings and data with other devices via Chrome Sync. But there is an issue when the script updates: Whenever the Chrome extension is updated, until you hard refresh (F5) the tab, 4chan X is unable to save any data (such as posts marked as yours and settings changes). The userscript version above does not have this problem when 4chan X updates, only when Violentmonkey / Tampermonkey is updated. To install as a Chrome extension:

Note: This version of 4chan X does not work with Opera 12. If you need Opera 12 support, try loadletter's fork instead.

Install the Userscripts extension. Enable it by pressing ⌘,, navigating to the extensions pane and checking Userscripts checkbox. Now open the Userscripts editor by clicking on the </> button in the taskbar. Then click on the + button and select the New Javascript option. Replace the default text with the contents of the 4chan X script. Finally save it by pressing ⌘s.

Installshield Product Code //top\\ May 2026

This guide provides a comprehensive overview of the Product Code in InstallShield, why it is critical for Windows Installer, and how to manage it effectively.


Pro Tips for Sanity

  1. Never reuse a Product Code. Even if you delete the project. GUIDs are infinite. Generate a new one.
  2. Never manually type a Product Code. Always use InstallShield’s "Generate GUID" button. Typos cause "Another version is already installed" errors.
  3. Store your Upgrade Code in a source-controlled text file. If you lose this, you cannot issue future major upgrades (you'll end up with parallel installations).

Scenario 3: The Correct Approach

Version 1.0 (Product Code A) is installed. You develop Version 2.0. You generate a new Product Code (B), keep the same Upgrade Code, and configure an "Upgrade" table. Windows Installer automatically detects A, removes it silently, and installs B. The user sees only one entry in Control Panel. This is the gold standard. installshield product code


Example Usage in Script (InstallScript)

// Get product code at runtime
szProductCode = MsiGetProductCode(MY_PRODUCT_NAME);

Pitfall 4: Hard-Coding the Product Code in Scripts

Result: You write a custom action that checks for OLD-GUID. When you change the Product Code, your script breaks. Fix: Use property references (e.g., [ProductCode]) in InstallScript or use the MSI API to retrieve the current product code dynamically. This guide provides a comprehensive overview of the


APIs and programmatic access

3. Keep a Product Code Change Log

Maintain a simple text file in your source control: Pro Tips for Sanity

Product: MyApp
Upgrade Code: MY-UPGRADE-CODE (Never changes)

Version | Product Code | Date | Release Type --------|------------------------------|------------|------------- 1.0 | 11111111-2222-3333-4444-555555555555 | 2023-01-01 | Initial 2.0 | 66666666-7777-8888-9999-AAAAAAAAAAAA | 2024-06-15 | Major Upgrade

Install Tampermonkey, then click here to install 4chan X.

4chan X can be used in some browsers that do not support userscripts using a local proxy. Not all features will work.

Beta version

New features and non-urgent bugfixes are released on the beta channel for further testing before they are moved the stable version. Please report any issues you find, and be sure to mention which version you're using. You should back up your settings regularly to prevent them from being lost due to bugs.

To install the beta version and get updates whenever there's a new beta version:

To install the current beta version but get updates from the stable channel (for example, if just you want a particular recent feature):

Troubleshooting

If you encounter a bug, try the steps here, then report it to the issue tracker. If the bug seems to be caused by a script update, you can install a old version from the changelog.