copy-abstract-as-iframe
You can copy iframe text for embed Abstract.
copy-abstract-as-iframeคืออะไร?
copy-abstract-as-iframe เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hirataakira6 และคุณลักษณะหลักของมันคือ "You can copy iframe text for embed Abstract."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย copy-abstract-as-iframe
ดาวน์โหลดไฟล์ส่วนขยาย copy-abstract-as-iframe ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
You can copy iframe text for embed Abstract.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | copy-abstract-as-iframe |
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" ] } ] } |