Cookies2JSON
Export cookies to a simple JSON file.
Vad är Cookies2JSON?
Cookies2JSON är en Chrome-tillägg utvecklad av sunnyclouds.apps, och dess huvudfunktion är "Export cookies to a simple JSON file.".
Tilläggsskärmbilder
Ladda ner Cookies2JSON-förlängningens CRX-fil
Ladda ner Cookies2JSON-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Minimalistic extension that allows you to safely export all cookies in a browser tab as a simple JSON file.
Grundläggande Information om Tillägg
Namn | Cookies2JSON |
ID | ffbinkjibaannhnogomaebfmogppggcd |
Officiell webbadress | https://chromewebstore.google.com/detail/cookies2json/ffbinkjibaannhnogomaebfmogppggcd |
Beskrivning | Export cookies to a simple JSON file. |
Filstorlek | 30.6 KB |
Antal Installationer | 93 |
Aktuell Version | 1.0.0 |
Senast Uppdaterad | 2021-05-06 |
Publiceringsdatum | 2021-05-05 |
Utvecklare | sunnyclouds.apps |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/sunnyclouds-apps/Cookies2JSON |
Hjälpsida URL | https://github.com/sunnyclouds-apps/Cookies2JSON/issues |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Cookies2JSON", "description": "Export cookies to a simple JSON file.", "version": "1.0.0", "icons": { "16": "icons\/icon_16.png", "128": "icons\/icon_128.png" }, "browser_action": { "default_icon": { "19": "icons\/icon_19.png", "38": "icons\/icon_38.png" }, "default_title": "Cookies2JSON", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_security_policy": "script-src 'self'; object-src 'self'", "permissions": [ "tabs", "cookies", "http:\/\/*\/*", "https:\/\/*\/*" ] } |