スラッシュリーディングサポート

スラッシュリーディングの補助ツールです。

Wat is スラッシュリーディングサポート?

スラッシュリーディングサポート is een Chrome-extensie ontwikkeld door GRASグループ株式会社(旧ウェブリオ株式会社), en de belangrijkste functie is "スラッシュリーディングの補助ツールです。".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie スラッシュリーディングサポート

Download スラッシュリーディングサポート-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Web上で英文を効率的に読みたい方のためのChromeエクステンションです。

Webページで英文を読んでいるときに、スラッシュリーディングができたらいいと思うことはありませんか?
このエクステンションをインストールすることで、Web上の英文にスラッシュを入れて読み進めることができます。

【使い方】
紙の英文の単語と単語の間に鉛筆やペンでスラッシュを入れるのと同じように、Web上の英文の単語と単語の間をクリックすることでスラッシュを入れることができます。
一度入れてしまったスラッシュを消したい場合は、再度同じ個所をクリックすることで消去できます。

また、オプション機能として、英文のセンテンスを選択状態にすると、その英文の分構造と品詞を表示する機能を備えています。
英文の構造を理解して読み進めたいときにご活用いただけます。

本拡張機能に関するご質問やご要望は、下記にて承っております。
https://docs.google.com/forms/d/e/1FAIpQLSfvDnoNJvSQYkQoQv4IUj8Jc1BM3r9ZocPuJ86Bx-AK50MPEQ/viewform                    

Basisinformatie over de Extensie

Naam スラッシュリーディングサポート スラッシュリーディングサポート
ID hkieabdejcghbmjmacbjlffjdeocfmeh
Officiële URL https://chromewebstore.google.com/detail/%E3%82%B9%E3%83%A9%E3%83%83%E3%82%B7%E3%83%A5%E3%83%AA%E3%83%BC%E3%83%87%E3%82%A3%E3%83%B3%E3%82%B0%E3%82%B5%E3%83%9D%E3%83%BC%E3%83%88/hkieabdejcghbmjmacbjlffjdeocfmeh
Beschrijving スラッシュリーディングの補助ツールです。
Bestandsgrootte 26.64 KB
Aantal Installaties 180
Huidige Versie 0.2.0
Laatst Bijgewerkt 2022-10-21
Publicatiedatum 2021-05-25
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar GRASグループ株式会社(旧ウェブリオ株式会社)
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://gras-group.co.jp/
Help Pagina-URL https://docs.google.com/forms/d/e/1FAIpQLSfvDnoNJvSQYkQoQv4IUj8Jc1BM3r9ZocPuJ86Bx-AK50MPEQ/viewform
Ondersteunde Talen ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "\u30b9\u30e9\u30c3\u30b7\u30e5\u30ea\u30fc\u30c7\u30a3\u30f3\u30b0\u30b5\u30dd\u30fc\u30c8",
    "version": "0.2.0",
    "description": "\u30b9\u30e9\u30c3\u30b7\u30e5\u30ea\u30fc\u30c7\u30a3\u30f3\u30b0\u306e\u88dc\u52a9\u30c4\u30fc\u30eb\u3067\u3059\u3002",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "action": {
        "default_title": "slash-reading",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ],
            "css": [
                "style\/slash.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}