Cookie Clone

Save current cookies and reuse anytime you want!

Vad är Cookie Clone?

Cookie Clone är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Save current cookies and reuse anytime you want!".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Cookie Clone-förlängningens CRX-fil

Ladda ner Cookie Clone-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

                        Cookie Clone is a tool to save current cookies and reuse anytime you want.
- Save current Cookie to list (by domain).
- Random load saved cookie.
- Load saved cookie one by one. (Load any cookie to mark index or it will start at index 1 by default).
- Clear current Cookie.
- Export & import Cookies to share (Options). ***Some website you can't share cookie!***
!!Simple but powerful!                    

Grundläggande Information om Tillägg

Namn Cookie Clone Cookie Clone
ID lekmaaaemhcgldgmgalajmoehddphfag
Officiell webbadress https://chromewebstore.google.com/detail/cookie-clone/lekmaaaemhcgldgmgalajmoehddphfag
Beskrivning Save current cookies and reuse anytime you want!
Filstorlek 201 KB
Antal Installationer 2,000
Aktuell Version 1.0
Senast Uppdaterad 2020-04-28
Publiceringsdatum 2020-04-27
Betyg 4.67/5 Totalt 3 Betyg
Utvecklare Unknown
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cookie Clone",
    "version": "1.0",
    "description": "Save current cookies and reuse anytime you want!",
    "permissions": [
        "tabs",
        "",
        "cookies",
        "unlimitedStorage",
        "storage"
    ],
    "background": {
        "scripts": [
            "lib\/object-watch.js",
            "lib\/jquery.js",
            "js\/cookie_helpers.js",
            "js\/background.js",
            "js\/utils.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": {
            "16": "images\/app_icon16.png",
            "32": "images\/app_icon32.png",
            "48": "images\/app_icon48.png",
            "128": "images\/app_icon128.png"
        },
        "default_title": "EditThisCookie",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/app_icon16.png",
        "32": "images\/app_icon32.png",
        "48": "images\/app_icon48.png",
        "128": "images\/app_icon128.png"
    },
    "manifest_version": 2
}