Chrome extension warning: 'input' is not allowed for specified platform -
Chrome extension warning: 'input' is not allowed for specified platform -
i want able read focused text input when hotkey pressed , commit text after replacing characters. here manifest.json:
{ "manifest_version": 2, "name": "easyfa", "description": "this extension convert mistyped english language sentences keyboard in english language mode or vice versa.", "version": "1.0", "icons": { "48": "48.png" }, "background": { "scripts": ["main.js"], "persistent": false }, "commands": { "convert-text": { "suggested_key": { "default": "ctrl+shift+0", "windows": "ctrl+shift+0" }, "description": "convert text" } }, "permissions": [ "input" ]} and here warning message:
there warnings when trying install extension: 'input' not allowed specified platform.
i searched warning message didn't find 1 related topic on net! what's wrong?
if understand question correctly, not utilize chrome os.
"use chrome.input.ime api implement custom ime chrome os." https://developer.chrome.com/extensions/input_ime
all need set "tabs" in "permissions" , delete "input".
google-chrome-extension
Comments
Post a Comment