bellFace Performance Tool
bellFace使用時にbellface以外のタブのメモリを解放します
Wat is bellFace Performance Tool?
bellFace Performance Tool is een Chrome-extensie ontwikkeld door bellface.inc.develop, en de belangrijkste functie is "bellFace使用時にbellface以外のタブのメモリを解放します".
Extensie Screenshots
Download het CRX-bestand van de extensie bellFace Performance Tool
Download bellFace Performance Tool-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会議システム「bellface」の起動を検知すると、
bellfaceのタブと現在アクティブになっているタブ以外を空欄ページで更新することでメモリを解放します。
空欄ページは再度アクティブになったタイミングで元のページを再表示します。
また拡張機能のアイコンメニューからメモリ解放処理の除外リストを設定可能です。
特定のドメインまたはURL(部分一致)を入力することでbellface起動中の自動メモリ解放処理を行いません。
拡張機能のアイコンメニューにはON/OFF機能があります(デフォルトはON)
OFFにすることで一時的に自動メモリ解放処理を停止することができます。
# 注意点
予期せぬエラーなどでChromeが強制終了した場合は「もとのページへ戻る」というテキストリンクが表示されたページが表示されることがあります。リンクをクリックすることで元のページへ戻ることができます。                     Basisinformatie over de Extensie
| Naam |   |  
| ID | biiiaomacbmbnajnofncoeciamilaglg | 
| Officiële URL | https://chromewebstore.google.com/detail/bellface-performance-tool/biiiaomacbmbnajnofncoeciamilaglg | 
| Beschrijving | bellFace使用時にbellface以外のタブのメモリを解放します | 
| Bestandsgrootte | 61.84 KB | 
| Aantal Installaties | 158 | 
| Huidige Versie | 1.0.10 | 
| Laatst Bijgewerkt | 2020-02-04 | 
| Publicatiedatum | 2020-02-04 | 
| Ontwikkelaar | bellface.inc.develop | 
| [email protected] | |
| Betalingswijze | free | 
| Extensiewebsite | https://bell-face.com | 
| Ondersteunde Talen | ja | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "bellFace.arima",
    "name": "bellFace Performance Tool",
    "version": "1.0.10",
    "description": "bellFace\u4f7f\u7528\u6642\u306bbellface\u4ee5\u5916\u306e\u30bf\u30d6\u306e\u30e1\u30e2\u30ea\u3092\u89e3\u653e\u3057\u307e\u3059",
    "permissions": [
        "tabs",
        "background"
    ],
    "background": {
        "scripts": [
            ".\/dist\/main.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/user.bell-face.com\/blank.html"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/user.bell-face.com\/*",
            "https:\/\/user.bell-face.fyi\/*",
            "https:\/\/user.bell-face.fm\/*",
            "https:\/\/user.bell-face.co\/*",
            "https:\/\/user.bell-face.example.com\/*",
            "https:\/\/user.bell-face.local\/*"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_title": "bellFace Performance Tool",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "19": "icon19.png",
        "32": "icon32.png",
        "38": "icon38.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}  |  |