copy-abstract-as-iframe
You can copy iframe text for embed Abstract.
copy-abstract-as-iframe क्या है?
copy-abstract-as-iframe hirataakira6 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "You can copy iframe text for embed Abstract."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में copy-abstract-as-iframe एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } ] } |