Chrome Storage Editor

This extension is a starting point to create a real Chrome extension

Wat is Chrome Storage Editor?

Chrome Storage Editor is een Chrome-extensie ontwikkeld door Mansour, en de belangrijkste functie is "This extension is a starting point to create a real Chrome extension".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Chrome Storage Editor

Download Chrome Storage Editor-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        An easy to use chrome storage editor with JSON validator.                    

Basisinformatie over de Extensie

Naam Chrome Storage Editor Chrome Storage Editor
ID onedaldmofocpkohhciabddanpcjgglk
Officiële URL https://chromewebstore.google.com/detail/chrome-storage-editor/onedaldmofocpkohhciabddanpcjgglk
Beschrijving This extension is a starting point to create a real Chrome extension
Bestandsgrootte 1.5 MB
Aantal Installaties 36
Huidige Versie 0.0.1
Laatst Bijgewerkt 2019-02-09
Publicatiedatum 2019-02-05
Ontwikkelaar Mansour
E-mail [email protected]
Betalingswijze free
Extensiewebsite http://mansour.co.nz/chrome-extensions
Help Pagina-URL http://mansour.co.nz/
Ondersteunde Talen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome Storage Editor",
    "description": "This extension is a starting point to create a real Chrome extension",
    "version": "0.0.1",
    "browser_action": {
        "default_popup": "index.html",
        "default_title": "Open the popup"
    },
    "icons": {
        "16": "logo-small.png",
        "48": "logo-small.png",
        "128": "logo-small.png"
    },
    "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'",
    "permissions": [
        "storage",
        "activeTab",
        "background",
        "unlimitedStorage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/content.js"
            ]
        }
    ]
}