KEYWORDSREADY

A simple extension that analyses JPEG images and generates keywords.

Wat is KEYWORDSREADY?

KEYWORDSREADY is een Chrome-extensie ontwikkeld door https://keywordsready.com, en de belangrijkste functie is "A simple extension that analyses JPEG images and generates keywords.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie KEYWORDSREADY

Download KEYWORDSREADY-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

                                            

Basisinformatie over de Extensie

Naam KEYWORDSREADY KEYWORDSREADY
ID kfmockieaihfbkpaenjmaiipmbcaobec
Officiële URL https://chrome.google.com/webstore/detail/keywordsready/kfmockieaihfbkpaenjmaiipmbcaobec
Beschrijving A simple extension that analyses JPEG images and generates keywords.
Bestandsgrootte 34.12 KB
Aantal Installaties 179
Huidige Versie 0.0.1
Laatst Bijgewerkt 2017-06-10
Publicatiedatum 2017-06-09
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar https://keywordsready.com
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://keywordsready.com/privacy
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "KEYWORDSREADY",
    "version": "0.0.1",
    "description": "A simple extension that analyses JPEG images and generates keywords.",
    "manifest_version": 2,
    "background": {
        "matches": [
            "http:\/\/*\/*",
            "https:\/\/*\/*"
        ],
        "scripts": [
            "background.js"
        ],
        "js": []
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "clipboardWrite",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_title": "KEYWORDSREADY",
        "default_icon": "icon128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}