MS Planner Presenter
Toggle Planner view for presenting MS Planner
MS Planner Presenterとは何ですか?
MS Planner Presenterはadb.planner.extensionによって開発されたChromeの拡張機能で、その主な機能は「Toggle Planner view for presenting MS Planner」です。
拡張機能のスクリーンショット
MS Planner Presenter拡張機能のCRXファイルをダウンロード
MS Planner Presenter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This Chrome Extension provides a simple toggle to hide MS Planner elements in O365 web to simplify the view for presenting or screenshot without detail
拡張機能の基本情報
名前 | MS Planner Presenter |
ID | bpkmpchafjnklamomnlenppjncgjgion |
公式URL | https://chromewebstore.google.com/detail/ms-planner-presenter/bpkmpchafjnklamomnlenppjncgjgion |
説明 | Toggle Planner view for presenting MS Planner |
ファイルサイズ | 12.39 KB |
インストール数 | 301 |
現在のバージョン | 0.5 |
最終更新日 | 2022-02-19 |
公開日 | 2020-04-16 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | adb.planner.extension |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "MS Planner Presenter", "version": "0.5", "description": "Toggle Planner view for presenting MS Planner", "icons": { "16": "planner16.png", "32": "planner32.png", "128": "planner128.png" }, "options_page": "options.html", "permissions": [ "activeTab", "declarativeContent", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/tasks.office.com\/*" ], "js": [ "content.js" ] } ], "browser_action": { "default_icon": "planner256.png" }, "background": { "scripts": [ "background.js" ] } } |