Script Bucket
Store and run JavaScript files in the browser.
Script Bucket क्या है?
Script Bucket Tyler Vick द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Store and run JavaScript files in the browser."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Script Bucket एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Script Bucket allows you to upload files to your browser's storage and insert them into any page. Once uploaded, click on any file listed to automatically add a link in the current page.
एक्सटेंशन की मूल जानकारी
नाम | Script Bucket |
ID | bnbhfjiddcmpfmdcijnlopfedpcjkpie |
आधिकारिक URL | https://chromewebstore.google.com/detail/script-bucket/bnbhfjiddcmpfmdcijnlopfedpcjkpie |
विवरण | Store and run JavaScript files in the browser. |
फ़ाइल का आकार | 1.1 MB |
स्थापना संख्या | 46 |
वर्तमान संस्करण | 0.0.1 |
अंतिम अपडेट | 2016-01-10 |
प्रकाशन तिथि | 2016-01-10 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | Tyler Vick |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/tylerjvick/scriptbucket |
सहायता पृष्ठ URL | https://github.com/tylerjvick/scriptbucket/issues |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Script Bucket", "author": "Tyler Vick", "description": "Store and run JavaScript files in the browser.", "version": "0.0.1", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "tabs", "unlimitedStorage" ], "browser_action": { "default_popup": "browser_action\/popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "inject\/content.js" ] } ], "icons": { "128": "icons\/icon128.png" }, "manifest_version": 2 } |