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 |
电子邮箱 | [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 } |