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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
| البريد الإلكتروني | [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"
]
}
]
} | |