copy-abstract-as-iframe
You can copy iframe text for embed Abstract.
什么是copy-abstract-as-iframe?
copy-abstract-as-iframe是由hirataakira6开发的Chrome扩展程序,该扩展的主要功能是“You can copy iframe text for embed Abstract.”。
扩展截图
下载copy-abstract-as-iframe扩展crx文件
下载copy-abstract-as-iframe扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
You can copy iframe text for embed Abstract. 扩展基本信息
| 名称 | |
| ID | jbjkajfamjnbodelakepcbfioogeihbd |
| 官方URL | https://chromewebstore.google.com/detail/copy-abstract-as-iframe/jbjkajfamjnbodelakepcbfioogeihbd |
| 简介 | You can copy iframe text for embed Abstract. |
| 文件大小 | 262 KB |
| 安装次数 | 21 |
| 当前版本 | 1.0.5 |
| 更新时间 | 2020-03-25 |
| 上架时间 | 2020-03-25 |
| 开发者 | hirataakira6 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/psephopaiktes/copy-abstract-as-iframe |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "copy-abstract-as-iframe",
"author": "Akira HIRATA",
"description": "You can copy iframe text for embed Abstract.",
"version": "1.0.5",
"manifest_version": 2,
"web_accessible_resources": [
"*"
],
"permissions": [
"storage"
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.goabstract.com\/*"
],
"js": [
"script.js"
]
},
{
"matches": [
"https:\/\/*.abstract.com\/*"
],
"js": [
"script.js"
]
},
{
"matches": [
"https:\/\/app.goabstract.com\/*"
],
"js": [
"script.js"
]
},
{
"matches": [
"https:\/\/app.abstract.com\/*"
],
"js": [
"script.js"
]
},
{
"matches": [
"https:\/\/share.goabstract.com\/*"
],
"js": [
"script.js"
]
}
]
} | |