KEYWORDSREADY

A simple extension that analyses JPEG images and generates keywords.

KEYWORDSREADYคืออะไร?

KEYWORDSREADY เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://keywordsready.com และคุณลักษณะหลักของมันคือ "A simple extension that analyses JPEG images and generates keywords."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย KEYWORDSREADY

ดาวน์โหลดไฟล์ส่วนขยาย KEYWORDSREADY ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                                            

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ KEYWORDSREADY KEYWORDSREADY
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
อีเมล [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"
    }
}