Fahrenheit 451
Converts Fahrenheit temperatures to celcius
Vad är Fahrenheit 451?
Fahrenheit 451 är en Chrome-tillägg utvecklad av https://www.dkcy.com, och dess huvudfunktion är "Converts Fahrenheit temperatures to celcius".
Tilläggsskärmbilder
Ladda ner Fahrenheit 451-förlängningens CRX-fil
Ladda ner Fahrenheit 451-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Fahrenheit 451 |
ID | piodninhpjpcpgboajmlmkbgplkmcfgd |
Officiell webbadress | https://chromewebstore.google.com/detail/fahrenheit-451/piodninhpjpcpgboajmlmkbgplkmcfgd |
Beskrivning | Converts Fahrenheit temperatures to celcius |
Filstorlek | 222 KB |
Antal Installationer | 31 |
Aktuell Version | 1.2 |
Senast Uppdaterad | 2017-02-08 |
Publiceringsdatum | 2017-02-08 |
Betyg | 2.50/5 Totalt 2 Betyg |
Utvecklare | https://www.dkcy.com |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } ] } |