Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
YouTube Security VideosWelcome to GitHub Copilot Day: the future of agentic engineering(22.09.2026 um 20:00 Uhr)
YouTube Security VideosMicrosoft Mechanics: What Can a Copilot Agent Actually Read?(22.09.2026 um 20:27 Uhr)
Unix & Linux ServerPeppermintOS Is Moving From Xorg to XLibre to Avoid Wayland(22.09.2026 um 19:58 Uhr)
Sicherheitslücken (CVE)USN-8803-1: Sudo vulnerability(22.09.2026 um 16:15 Uhr)
Sichere ProgrammierungClaude Opus 5.5 is now available in GitHub Copilot(22.09.2026 um 19:10 Uhr)
Sichere ProgrammierungColab is now part of your Google AI plan(22.09.2026 um 20:51 Uhr)
Sichere ProgrammierungThe Hidden Production Risks of Third-Party SDKs(22.09.2026 um 20:00 Uhr)
YouTube Security VideosWelcome to GitHub Copilot Day: the future of agentic engineering(22.09.2026 um 20:00 Uhr)
YouTube Security VideosMicrosoft Mechanics: What Can a Copilot Agent Actually Read?(22.09.2026 um 20:27 Uhr)
Unix & Linux ServerPeppermintOS Is Moving From Xorg to XLibre to Avoid Wayland(22.09.2026 um 19:58 Uhr)
Sicherheitslücken (CVE)USN-8803-1: Sudo vulnerability(22.09.2026 um 16:15 Uhr)
Sichere ProgrammierungClaude Opus 5.5 is now available in GitHub Copilot(22.09.2026 um 19:10 Uhr)
Sichere ProgrammierungColab is now part of your Google AI plan(22.09.2026 um 20:51 Uhr)
Sichere ProgrammierungThe Hidden Production Risks of Third-Party SDKs(22.09.2026 um 20:00 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

How to fix the "Purple Potassium" Chrome Web Store rejection (and catch it before you submit)

You submitted your extension, waited days for review, and got back a rejection with a violation called "Purple Potassium." Your extension looks fine to you, so what does it even mean? Here is what it is, why it happens, and how to catch…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

You submitted your extension, waited days for review, and got back a rejection

with a violation called "Purple Potassium." Your extension looks fine to you, so

what does it even mean? Here is what it is, why it happens, and how to catch it

before you ever hit submit.





What "Purple Potassium" actually means



"Purple Potassium" is Google's internal tag for excessive or unused

permissions
. Your manifest requests access to something your code does not

actually use, and the reviewer flags it. It is one of the most common reasons a

Chrome extension gets rejected, and it is frustrating precisely because the

extension works fine in testing. Review is checking something testing never does:

whether every permission you ask for is justified by your code.





The usual causes



1. API permissions you declared but never call. You added tabs,

bookmarks, or cookies to your manifest at some point, but there is no

chrome.bookmarks.* call anywhere in your code.



2. Host access that is too broad. You requested <all_urls> when your

extension only touches one site:




// Flagged
"host_permissions": ["<all_urls>"]

// Better
"host_permissions": ["https://*.example.com/*"]







  1. Leftover permissions after removing a feature. You shipped a feature that

    needed downloads, later removed the feature, and forgot to remove the

    permission.


  2. The tabs misunderstanding. The tabs permission does not grant access

    to the tabs API. Basic methods like chrome.tabs.create() work without it. It

    only grants four sensitive Tab properties: url, pendingUrl, title, and

    favIconUrl. If you declare tabs but never read those, it counts as unused.




How to fix it by hand




  1. List everything in permissions, optional_permissions, and
    host_permissions.

  2. For each one, search your code for the matching chrome. call.

  3. Remove any permission with no usage.

  4. Narrow and other broad patterns to the specific hosts you need.

  5. In your reviewer notes, write one plain sentence per sensitive permission
    explaining why you need it. Reviewers often lack context, and this prevents
    a lot of back and forth.



This works, but it is tedious and easy to get wrong, especially the tabs and

host-permission rules.



The faster way: lint it before you submit



I built a small CLI that does this check automatically. Point it at your unpacked

extension directory:



npx tabsmith-lint ./my-extension



It statically reads your code, builds an inventory of which chrome.* APIs you

actually call, and compares that to what your manifest declares. Then it reports

the likely rejection causes with the matching violation IDs, for example:



[fix] PERM001 Permission "bookmarks" appears unused (Purple Potassium)

manifest.json:8

No chrome.bookmarks/browser.bookmarks usage found.

Fix: remove "bookmarks" unless it is required by code not in this package.



It also flags broad host access, remote code, and missing or wrong-case file

references. You get a pass / needs fixes / high rejection risk verdict and

exit codes, so you can run it in CI.



One important caveat



This is static analysis, not magic. A linter that tells you to remove a

permission you actually use is worse than no linter, so the unused-permission

rule is deliberately conservative: it ships as a warning, not a hard error, and

it lowers its confidence when it sees dynamic access like chrome[name]. It is

also honest about its limits. Deeply bundled extensions can still hide usage from

it, which is documented.



If you want to verify the accuracy yourself rather than take my word for it, the

project ships an open benchmark of hand-labeled real extensions and a scorer you

can run with npm run score.



Bottom line



The Purple Potassium rejection comes down to one rule: request the narrowest

permissions your code actually uses, and nothing more. Audit your manifest

against your code before every submission. Doing it by hand works; running a

linter is faster and catches the cases that are easy to miss.



Tool is MIT and open source: https://github.com/rsub122/tabsmith-lint

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten How to fix the "Purple Potassium" Chrome Web Store rejection (and catch it before you submit)

Thematisch verwandte Begriffe: Purple, Potassium, Chrome, Store · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-77258 | MCP Atlassian is a Model Context Protocol (MCP) server for Atlassian pro…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick