copy-abstract-as-iframe
You can copy iframe text for embed Abstract.
Was ist copy-abstract-as-iframe?
copy-abstract-as-iframe ist eine Chrome-Erweiterung, die von hirataakira6 entwickelt wurde, und ihr Hauptmerkmal ist "You can copy iframe text for embed Abstract.".
Erweiterungsscreenshots
copy-abstract-as-iframe-Erweiterungs-CRX-Datei herunterladen
Laden Sie copy-abstract-as-iframe-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
You can copy iframe text for embed Abstract. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jbjkajfamjnbodelakepcbfioogeihbd |
| Offizielle URL | https://chromewebstore.google.com/detail/copy-abstract-as-iframe/jbjkajfamjnbodelakepcbfioogeihbd |
| Beschreibung | You can copy iframe text for embed Abstract. |
| Dateigröße | 262 KB |
| Installationsanzahl | 21 |
| Aktuelle Version | 1.0.5 |
| Letztes Update | 2020-03-25 |
| Veröffentlichungsdatum | 2020-03-25 |
| Entwickler | hirataakira6 |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/psephopaiktes/copy-abstract-as-iframe |
| Unterstützte Sprachen | 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"
]
}
]
} | |