Chrome Extension v2.0

Copy Reddit Post JSON with One Click

A beautiful Chrome extension that adds a native JSON button to every Reddit post. Get full post data, comments, and metadata — instantly.

Manifest V3 Chrome Extension MIT License Zero Dependencies

Everything You Need

Powerful features designed for Reddit developers, data enthusiasts, and content creators.

📋

One-Click Copy

Click the { } JSON button on any post to copy the full, pretty-printed JSON to your clipboard instantly.

🎨

Native Integration

Button seamlessly blends into Reddit's toolbar with matching colors, spacing, and hover effects.

🔄

Infinite Scroll Support

Automatically adds buttons to new posts as you scroll using MutationObserver — no page reload needed.

🌐

Dual Reddit Support

Works on both www.reddit.com (new Reddit) and old.reddit.com with dedicated selectors.

📋

Copy History

Popup shows your last 50 copied posts with persistent storage. Search, re-copy, or view any previous entry.

🤖

AI Post Generator

Generate viral LinkedIn posts from Reddit content with one click using OpenRouter or Groq AI providers.

💾

Export History

Download your entire copy history as a timestamped JSON file for backup or analysis.

⚠️

Error Handling

Graceful toast notifications for network errors, private subs, rate limits, and focus issues.

Zero Dependencies

No external libraries, no build step, no npm install. Pure vanilla JavaScript — instant load.

How It Works

ReddJSON leverages Reddit's built-in JSON endpoint to fetch raw post data.

1

Browse Reddit

Navigate to any Reddit post on new or old Reddit. The JSON button appears automatically.

2

Click JSON Button

Click the { } JSON button in the post's action bar. The extension fetches the raw data.

3

Data Copied

Full post JSON with comments is copied to your clipboard. A green toast confirms success.

4

Use Anywhere

Paste the JSON into VS Code, Postman, Python scripts, or any tool that accepts JSON data.

// Every Reddit URL supports .json endpoint
https://www.reddit.com/r/javascript/comments/abc123/.json

// Returns an array with post data and comments
[
  {
    "kind": "Listing",
    "data": {
      "children": [{
        "kind": "t3",
        "data": {
          "subreddit": "javascript",
          "title": "Post Title",
          "author": "username",
          "score": 42,
          "selftext": "Post body..."
        }
      }]
    }
  },
  { "kind": "Listing", "data": { "children": [/* comments */] } }
]
10
Features
0
Dependencies
50
History Entries
2
Reddit Versions

See It In Action

Clean, native-looking UI that feels like part of Reddit itself.

JSON Button in Reddit Feed

JSON Button in Feed

The button appears in every post's action bar with Reddit-orange hover effect.

Sidebar Copy History

Copy History Sidebar

Modern sidebar with search, stats, and scrollable history cards.

JSON Viewer Modal

JSON Viewer Modal

Full JSON viewer with syntax highlighting, copy button, and backdrop blur.

AI Post Generator

AI Post Generator

Generate viral LinkedIn posts from Reddit content with one click.

Ready to Get Started?

Install ReddJSON in under a minute and start copying Reddit JSON today.

Install Now Star on GitHub