KEYWORDSREADY
A simple extension that analyses JPEG images and generates keywords.
What is KEYWORDSREADY?
KEYWORDSREADY is a Chrome extension developed by https://keywordsready.com, and its main feature is "A simple extension that analyses JPEG images and generates keywords.".
Extension Screenshots
Download KEYWORDSREADY Extension CRX File
Download KEYWORDSREADY extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Extension Basic Information
Name | |
ID | kfmockieaihfbkpaenjmaiipmbcaobec |
Official URL | https://chrome.google.com/webstore/detail/keywordsready/kfmockieaihfbkpaenjmaiipmbcaobec |
Description | A simple extension that analyses JPEG images and generates keywords. |
File Size | 34.12 KB |
Installation Count | 179 |
Current Version | 0.0.1 |
Last Updated | 2017-06-10 |
Publish Date | 2017-06-09 |
Rating | 5.00/5 Total 2 Ratings |
Developer | https://keywordsready.com |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://keywordsready.com/privacy |
Supported Languages | 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" } } |