Easy Cookie Editor
Easy Cookie Editor is a cookie manager. Control your cookies! You can add, delete, edit and search.
Hvad er Easy Cookie Editor?
Easy Cookie Editor er en Chrome-udvidelse udviklet af Radovan Pelka (Rado), og dens hovedfunktion er "Easy Cookie Editor is a cookie manager. Control your cookies! You can add, delete, edit and search.".
Udvidelsesskærmbilleder
Download Easy Cookie Editor-udvidelses-CRX-fil
Download Easy Cookie Editor-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Easy Cookie Editor: A complete manager for cookies accumulated during browsing. It allows you to view, edit, create, delete cookies and search them by domain names. Contextual Identities such as Private Browsing, First-Party Isolation, and SameSite flag are also supported. Easy Cookie Editor is designed for developers, testers or people concerned about their privacy on the Internet. --- Privacy Policy: https://github.com/RadovanPelka/Easy-Cookie-Editor/blob/master/privacy-policy.md
Grundlæggende oplysninger om udvidelsen
Navn | Easy Cookie Editor |
ID | lidhbccbajehjnpfjpnamoiemcnhhnki |
Officiel URL | https://chromewebstore.google.com/detail/easy-cookie-editor/lidhbccbajehjnpfjpnamoiemcnhhnki |
Beskrivelse | Easy Cookie Editor is a cookie manager. Control your cookies! You can add, delete, edit and search. |
Filstørrelse | 895 KB |
Antal Installationer | 3,469 |
Nuværende Version | 2.2 |
Senest Opdateret | 2020-03-18 |
Udgivelsesdato | 2020-03-16 |
Bedømmelse | 4.57/5 Samlet 7 Bedømmelser |
Udvikler | Radovan Pelka (Rado) |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/RadovanPelka/Easy-Cookie-Editor |
Hjælpeside-URL | https://github.com/RadovanPelka/Easy-Cookie-Editor |
URL til Fortrolighedspolitik Side | https://github.com/RadovanPelka/Easy-Cookie-Editor/blob/master/privacy-policy.md |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Easy Cookie Editor", "short_name": "Easy Cookie Editor", "version": "2.2", "description": "Easy Cookie Editor is a cookie manager. Control your cookies! You can add, delete, edit and search.", "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "cookies", "activeTab" ], "browser_action": { "default_popup": "popup\/index.html", "default_title": "Easy Cookie Editor", "default_icon": { "16": "assets\/icon_16x16.png", "32": "assets\/icon_32x32.png", "48": "assets\/icon_48x48.png", "128": "assets\/icon_128x128.png" } }, "icons": { "16": "assets\/icon_16x16.png", "32": "assets\/icon_32x32.png", "48": "assets\/icon_48x48.png", "128": "assets\/icon_128x128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+A", "mac": "Command+Shift+A" } } } } |