copy-abstract-as-iframe
You can copy iframe text for embed Abstract.
Wat is copy-abstract-as-iframe?
copy-abstract-as-iframe is een Chrome-extensie ontwikkeld door hirataakira6, en de belangrijkste functie is "You can copy iframe text for embed Abstract.".
Extensie Screenshots
Download het CRX-bestand van de extensie copy-abstract-as-iframe
Download copy-abstract-as-iframe-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
You can copy iframe text for embed Abstract.
Basisinformatie over de Extensie
Naam | copy-abstract-as-iframe |
ID | jbjkajfamjnbodelakepcbfioogeihbd |
Officiële URL | https://chromewebstore.google.com/detail/copy-abstract-as-iframe/jbjkajfamjnbodelakepcbfioogeihbd |
Beschrijving | You can copy iframe text for embed Abstract. |
Bestandsgrootte | 262 KB |
Aantal Installaties | 21 |
Huidige Versie | 1.0.5 |
Laatst Bijgewerkt | 2020-03-25 |
Publicatiedatum | 2020-03-25 |
Ontwikkelaar | hirataakira6 |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/psephopaiktes/copy-abstract-as-iframe |
Ondersteunde Talen | 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" ] } ] } |