Firellama Firefox

Firellama

Right-click to summarize a sentence or define a word using locally installed ollama. Sends selected text to your offline ollama system for pop-up window. This is more or less DIY project since most of the things are needed on your local machine.

Features & Capabilities

you need ollama installed on your local machine. https://ollama.com/download ollama pull deepseek-r1:1.5b

The addon will use the model deepseek-r1:1.5b installed on your machine. It summarizes the selected text if it is more than one word or else defines it.

On top of that you need server.py running on your machine. pip install flask flask_cors

server.py

from flask import Flask, request, jsonify from flask_cors import CORS import requests import re

app = Flask(name) CORS(app)

OLLAMA_URL = "http://localhost:11434/api/generate" OLLAMA_MODEL = "deepseek-r1:1.5b"

def call_ollama(prompt): try: res = requests.post(OLLAMA_URL, json={ "model": OLLAMA_MODEL, "prompt": prompt, "stream": False }) if res.status_code == 200: result = res.json().get("response", "") cleaned = re.sub(r"<think>.*?</think>", "", result, flags=re.DOTALL).strip() return cleaned else: return f"⚠️ Ollama error: {res.text}" except Exception as e: return f"❌ Error: {str(e)}"

@app.route("/ask", methods=["POST"]) def ask(): data = request.get_json() prompt = data.get("prompt") if not prompt: return jsonify({"error": "Missing prompt"}), 400

result = call_ollama(prompt)
return jsonify({"text": result})

if name == "main": app.run(host="0.0.0.0", port=5005)

Run it at startup with "ollama run deepseek-r1:1.5b" and enjoy the summary.

I usually do ctrl+a of the entire webpage and right-click on Firellama to get the summary.

Special Thanks to ChatGPT.

User Growth & Download Statistics

Manifest V2 Add-on
By:
dishdare
Daily users:
1
Version:
1.0 Last updated: 2025-06-24
Version code:
5973297
Creation date:
2025-06-20
Risk:
Very low risk impact Moderate risk likelihood
Permissions:
Size:
1.33MB
Full description:
See detailed description
Source:
Firefox Add-ons Store
Data ingested on:
2026-06-16
Compare stats and ranking:

Contact the developer

Chrome-Stats does not own this Firefox add-on. Please use these information below to contact the Firefox add-on developer.
Developed by:
dishdare
Firefox Add-ons Store
https://addons.mozilla.org/firefox/addon/firellama/

Is Firellama Safe?

Risk impact
Risk impact measures the level of extra permissions an extension has access to. A low risk impact extension cannot do much harms, whereas a high risk impact extension can do a lot of damage like stealing your password, bypassing your security settings, and accessing your personal data. High risk impact extensions are not necessarily malicious. However, if they do turn malicious, they can be very harmful.

Firellama does not require any sensitive permissions.

Risk impact analysis details
Risk likelihood
Risk likelihood measures the probability that a Firefox add-on may turn malicious. This is determined by the publisher and the Firefox add-on reputation on Firefox Add-ons Store, the amount of time the Firefox add-on has been around, and other signals about the Firefox add-on. Our algorithms are not perfect, and are subject to change as we discover new ways to detect malicious extensions. We recommend that you always exercise caution when installing a Firefox add-on.

Firellama is probably trust-worthy. Prefer other publishers if available. Exercise caution when installing this add-on.

Risk likelihood analysis details
  • High This extension has low user count. Unpopular extensions may not be stable or safe.
  • Low **** ********* *** ******* **** **** * ****** **** ***** ******** *** **** ****** ** ** ****** *** *****
  • Low **** ********* *** ***** **** **** * ****** **** ***** ********** *** **** ****** ** ** ****** *** *****
Extension Guard
Extension Guard

Discover every extension in use, analyze risks, and enforce blocking policies with Extension Guard

Secure Your Browser
Upgrade to see full risk analysis details

Best Firellama Alternatives

Here are some Firefox add-ons that are similar to Firellama: