├── .gitignore ├── README.md ├── background.js ├── content.js ├── img ├── hen128.png ├── hen16.png ├── hen32.png └── hen48.png └── manifest.json /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezanasseh/Convert-Letters/HEAD/README.md -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezanasseh/Convert-Letters/HEAD/background.js -------------------------------------------------------------------------------- /content.js: -------------------------------------------------------------------------------- 1 | document.execCommand('insertHTML', false, convertedText); 2 | -------------------------------------------------------------------------------- /img/hen128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezanasseh/Convert-Letters/HEAD/img/hen128.png -------------------------------------------------------------------------------- /img/hen16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezanasseh/Convert-Letters/HEAD/img/hen16.png -------------------------------------------------------------------------------- /img/hen32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezanasseh/Convert-Letters/HEAD/img/hen32.png -------------------------------------------------------------------------------- /img/hen48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezanasseh/Convert-Letters/HEAD/img/hen48.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezanasseh/Convert-Letters/HEAD/manifest.json --------------------------------------------------------------------------------