Slava Russian Dictionary

This extension writes accents on Russian words, and adds a popup to each word with its English definition.

Slava Russian Dictionary là gì?

Slava Russian Dictionary là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "This extension writes accents on Russian words, and adds a popup to each word with its English definition.".

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

screenshot

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

Tải xuống các tệp mở rộng Slava Russian Dictionary 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

                        Features:
- When visiting a page with Russian text, click the owl icon in the toolbar. This will mark accents (vocal stress position) on Russian words. For example, предложение is converted to предложе́ние.
- After clicking the owl icon, move the mouse over any Russian word to display a pop-up with the English definition of the word.
  *) Word base form and accent, e.g. окно́. Click on the Word base to show the full Wiktionary entry with etymology, declension and other information.
  *) Word class and grammar, e.g. Noun or Adjective, neutral, inanimate
  *) Key grammatical forms, e.g. neutral inanimate
  *) For verbs, perfective or imperfective and the corresponding other form(s), e.g. пить impf (perfective вы́пить or попи́ть)
  *) Definition and example sentences

Notes:
- The extension must be manually activated for every tab where you want it to run. For this, click on the button with the owl icon in the toolbar.
- In some cases, there are multiple possibilities for accenting the word. For example, окна can be окна́ (genitive singular) or о́кна (nominative/accusative plural). The extension does not attempt to guess the correct case, so it will mark the word о́кна́. The reader should of course not accent both vowels, but infer the correct pronunciation from the context.

This is a non-commercial, open-source project. There are no ads or hidden features.

Privacy policy: the extension does not record not sends any information to external servers. When a pop-up is displayed, the Wiktionary public API is called to retrieve the word definition to be displayed.                    

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

Tên Slava Russian Dictionary Slava Russian Dictionary
ID bcbcmhmpbggnljoapclfcagammaapghi
URL Chính Thức https://chromewebstore.google.com/detail/slava-russian-dictionary/bcbcmhmpbggnljoapclfcagammaapghi
Mô tả This extension writes accents on Russian words, and adds a popup to each word with its English definition.
Kích Thước Tệp 3.81 MB
Số Lần Cài Đặt 1,116
Phiên Bản Hiện Tại 0.0.0.4
Cập Nhật Lần Cuối 2019-05-28
Ngày Phát Hành 2019-05-27
Đánh Giá 4.59/5 Tổng số 17 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Trang Web Mở Rộng https://algattik.github.io/SlavaTranslator/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Slava Russian Dictionary",
    "description": "This extension writes accents on Russian words, and adds a popup to each word with its English definition.",
    "version": "0.0.0.4",
    "browser_action": {
        "default_title": "Enrich text with accents and dictionary popups",
        "default_icon": "owl_16.png",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "icons": {
        "16": "owl_16.png",
        "48": "owl_48.png",
        "128": "owl_128.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        ""
    ],
    "background": {
        "scripts": [
            "generated\/jquery.js",
            "generated\/slavaConfig.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "loader.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "generated\/resources\/*"
    ]
}