Tarjomak

Tarjomak extension provides quick translation of selected texts for persian users

Tarjomak là gì?

Tarjomak là một tiện ích mở rộng Chrome được phát triển bởi Mostafa Alahyari (@mimalef70), và tính năng chính của nó là "Tarjomak extension provides quick translation of selected texts for persian users".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tarjomak

Tải xuống các tệp mở rộng Tarjomak dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Tarjomak, an extension for translating your contents from English to Persian (Farsi) as easy as pie. The only things you need to do is:

Option 1:
1. Select the text
2. Tap the Shift key
3. Done. You have the translated equivalent

 Option 2:
 1. Select the text
 2. Click on the extension's icon on the explorer's toolbar
 3. Done. You have the translated equivalent                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Tarjomak Tarjomak
ID dbaahnceahihnikjnogoijfdccdonlia
URL Chính Thức https://chromewebstore.google.com/detail/tarjomak/dbaahnceahihnikjnogoijfdccdonlia
Mô tả Tarjomak extension provides quick translation of selected texts for persian users
Kích Thước Tệp 212 KB
Số Lần Cài Đặt 2,765
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2019-01-14
Ngày Phát Hành 2019-01-10
Đánh Giá 3.83/5 Tổng số 18 Đánh Giá
Nhà Phát Triển Mostafa Alahyari (@mimalef70)
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://mimalef70.github.io/tarjomak/
URL Trang Trợ Giúp https://mimalef70.github.io/tarjomak/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tarjomak",
    "author": "Mostafa Alahyari",
    "description": "Tarjomak extension provides quick translation of selected texts for persian users",
    "version": "1.0.3",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "css": [
                "styles\/popup_inject.css",
                "styles\/hint.min.css"
            ],
            "js": [
                "script\/allEnv\/allEnv.js",
                "script\/contentscript\/tarjomak.js",
                "script\/contentscript\/tarjomak_main.js",
                "script\/clipboard.min.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "background": {
        "scripts": [
            "script\/allEnv\/allEnv.js",
            "script\/background\/background.js"
        ]
    },
    "web_accessible_resources": [
        "icons\/*",
        "styles\/*",
        "fonts\/*"
    ],
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon19.png",
            "38": "icons\/icon38.png"
        },
        "default_title": "Tarjomak",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "*:\/\/*\/*",
        ""
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Q"
            }
        }
    }
}