Fahrenheit 451
Converts Fahrenheit temperatures to celcius
Fahrenheit 451 क्या है?
Fahrenheit 451 https://www.dkcy.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Converts Fahrenheit temperatures to celcius"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Fahrenheit 451 एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Converts US measures into metric. Currently converts: Fahrenheit to Celcius (rounded to whole number) Lbs and ozs to grams (rounded to whole number) Quarts and pints to millilitres Unfortunately, it can't handle cups because that's a volumetric measure and depends on the density of the thing being measured. I'm working on that... Released under a Creative Commons CC BY-NC-SA licence. https://creativecommons.org/licenses/by-nc-sa/4.0/ Code is on GitHub https://github.com/yukinosaru/fahrenheit451
एक्सटेंशन की मूल जानकारी
नाम | Fahrenheit 451 |
ID | piodninhpjpcpgboajmlmkbgplkmcfgd |
आधिकारिक URL | https://chromewebstore.google.com/detail/fahrenheit-451/piodninhpjpcpgboajmlmkbgplkmcfgd |
विवरण | Converts Fahrenheit temperatures to celcius |
फ़ाइल का आकार | 222 KB |
स्थापना संख्या | 31 |
वर्तमान संस्करण | 1.2 |
अंतिम अपडेट | 2017-02-08 |
प्रकाशन तिथि | 2017-02-08 |
रेटिंग | 2.50/5 कुल 2 रेटिंग्स |
डेवलपर | https://www.dkcy.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Fahrenheit 451", "description": "Converts Fahrenheit temperatures to celcius", "version": "1.2", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "default_title": "Click to enable\/disable Fahrenheit451" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ] } |