Canvas PDF Window
Open files from canvas in their own window.
Canvas PDF Windowとは何ですか?
Canvas PDF WindowはAdam Millerによって開発されたChromeの拡張機能で、その主な機能は「Open files from canvas in their own window.」です。
拡張機能のスクリーンショット
Canvas PDF Window拡張機能のCRXファイルをダウンロード
Canvas PDF Window拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This is a simple Chrome extension that will open PDFs and other files in Chrome's default pdf viewer instead of Canvas' embedded viewer. Icons made by Dave Gandy from www.flaticon.com is licensed by CC 3.0 BY
拡張機能の基本情報
名前 | Canvas PDF Window |
ID | gnonhflkapkldnogkjpbbfeejikjaccl |
公式URL | https://chromewebstore.google.com/detail/canvas-pdf-window/gnonhflkapkldnogkjpbbfeejikjaccl |
説明 | Open files from canvas in their own window. |
ファイルサイズ | 11.17 KB |
インストール数 | 257 |
現在のバージョン | 1.0 |
最終更新日 | 2018-05-07 |
公開日 | 2018-05-07 |
評価 | 1.00/5 合計 1 レビュー |
開発者 | Adam Miller |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Canvas PDF Window", "version": "1.0", "description": "Open files from canvas in their own window.", "permissions": [ "activeTab" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.instructure.com\/*" ], "js": [ "content.js" ] } ], "browser_action": { "default_icon": "share-symbol-32.png" }, "icons": { "16": "share-symbol-16.png", "32": "share-symbol-32.png", "48": "share-symbol-64.png", "128": "share-symbol-128.png" }, "manifest_version": 2 } |