Github file download
Add a download button for Github and gist
Github file download क्या है?
Github file download litefeel द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add a download button for Github and gist"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Github file download एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Add a download button for Github and gist
एक्सटेंशन की मूल जानकारी
नाम | Github file download |
ID | mmpjhbgoanojaigomkmoppeogccmjhko |
आधिकारिक URL | https://chromewebstore.google.com/detail/github-file-download/mmpjhbgoanojaigomkmoppeogccmjhko |
विवरण | Add a download button for Github and gist |
फ़ाइल का आकार | 50.94 KB |
स्थापना संख्या | 387 |
वर्तमान संस्करण | 1.5 |
अंतिम अपडेट | 2015-11-20 |
प्रकाशन तिथि | 2015-11-20 |
रेटिंग | 3.67/5 कुल 3 रेटिंग्स |
डेवलपर | litefeel |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/lite3/github-file-download |
सहायता पृष्ठ URL | https://github.com/lite3/github-file-download |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github file download", "description": "Add a download button for Github and gist", "version": "1.5", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "activeTab", "tabs", "https:\/\/github.com\/", "https:\/\/gist.github.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*" ], "js": [ "jquery.min.js", "download-button.js" ], "css": [ "style.css" ], "run_at": "document_end" } ], "offline_enabled": true, "homepage_url": "https:\/\/github.com\/lite3\/github-file-download\/" } |