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 |
| Eメール | [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"
]
}
]
} | |