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.
擴展基本資訊
名稱 | copy-abstract-as-iframe |
ID | jbjkajfamjnbodelakepcbfioogeihbd |
官方網址 | 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" ] } ] } |