KEYWORDSREADY
A simple extension that analyses JPEG images and generates keywords.
KEYWORDSREADYとは何ですか?
KEYWORDSREADYはhttps://keywordsready.comによって開発されたChromeの拡張機能で、その主な機能は「A simple extension that analyses JPEG images and generates keywords.」です。
拡張機能のスクリーンショット
KEYWORDSREADY拡張機能のCRXファイルをダウンロード
KEYWORDSREADY拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
拡張機能の基本情報
| 名前 | |
| ID | kfmockieaihfbkpaenjmaiipmbcaobec |
| 公式URL | https://chrome.google.com/webstore/detail/keywordsready/kfmockieaihfbkpaenjmaiipmbcaobec |
| 説明 | A simple extension that analyses JPEG images and generates keywords. |
| ファイルサイズ | 34.12 KB |
| インストール数 | 179 |
| 現在のバージョン | 0.0.1 |
| 最終更新日 | 2017-06-10 |
| 公開日 | 2017-06-09 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | https://keywordsready.com |
| Eメール | [email protected] |
| 支払い方法 | free |
| プライバシーポリシーページのURL | https://keywordsready.com/privacy |
| 対応言語 | 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"
}
} | |