LÖVELINESS

Play LÖVE games in your browser!

ما هو LÖVELINESS؟

LÖVELINESS هو إضافة Chrome تم تطويرها بواسطة binji، والميزة الرئيسية لها هي "Play LÖVE games in your browser!".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة LÖVELINESS

قم بتنزيل ملفات الامتداد LÖVELINESS بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Hi there! LÖVELINESS is an *awesome* Chrome extension you can use to run LÖVE games in your browser. Find out more about LÖVE at http://love2d.org/

This extension will hijack links to .love files and play them directly in your browser, instead of downloading.

Try some examples at http://goo.gl/LFCdo.

It's still pretty early, so expect to find bugs. If you do, please file them at https://github.com/binji/love-nacl/issues.

Thanks to the LÖVE development team for making LÖVE, slime for the OpenGL ES 2.0 port, and thanks to all the LÖVErs out there!

p.s.
If you can't type Ö, you can call it loveliness too. Also this will help people search the Chrome Web Store! :D

Changes:
0.2.3 - Fix some bugs, click to load on "Load File" page.
0.2.2 - Change background color, and automatically sync settings.
0.2.1 - Fix persistent storage bug that broke Chrome 26 users.
0.2.0 - Persistent storage, load via context menu, and better handling of quit message.
0.1.9 - Added loading message, fixed some nasty crashes/hangs.
0.1.8 - Drag and drop file loading. Also page injection (allows for cool stuff like author name, link on page, etc...)
0.1.7 - Add stencil buffer, add popup dialog and tests to see if everything should work.
0.1.6 - Fix fullscreen crash
0.1.5 - Add unicode keys + fix for gl_FragCoord (try metaballs)
0.1.4 - Added focus tracking, fullscreen, and logging to console
0.1.3 - Flipped mousewheel direction. :)
0.1.2 - Add mousewheel support (try the particles demo)
0.1.1 - Fixed performance issue with rendered text (improves sinescroller and ortho robot performance)
0.1.0 - Initial release                    

معلومات أساسية عن التمديد

الاسم LÖVELINESS LÖVELINESS
ID mompnkcmpbopandjnddeecgeeojegohc
عنوان URL الرسمي https://chromewebstore.google.com/detail/l%C3%B6veliness/mompnkcmpbopandjnddeecgeeojegohc
الوصف Play LÖVE games in your browser!
حجم الملف 7.55 MB
عدد التثبيتات 141
النسخة الحالية 0.2.4
آخر تحديث 2013-10-16
تاريخ النشر 2013-10-16
تقييم 4.47/5 مجموع تقييمات 19
المطور binji
نوع الدفع free
موقع الإضافة http://binji.github.io/love-nacl
عنوان صفحة المساعدة https://github.com/binji/love-nacl/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "L\u00d6VELINESS",
    "version": "0.2.4",
    "manifest_version": 2,
    "description": "Play L\u00d6VE games in your browser!",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "19": "nyu19.png",
            "38": "nyu38.png"
        },
        "default_title": "L\u00d6VELINESS",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "*:\/\/*.love2d.org\/*",
        "*:\/\/*.dropboxusercontent.com\/*.love?*",
        "*:\/\/*\/*.love",
        "contextMenus",
        "storage",
        "unlimitedStorage",
        "webRequest",
        "webRequestBlocking"
    ],
    "nacl_modules": [
        {
            "path": "love_release.nmf",
            "mime_type": "application\/x-love-game"
        }
    ],
    "web_accessible_resources": [
        "love_x86_32_release.nexe",
        "love_x86_64_release.nexe",
        "love_arm_release.nexe",
        "love_release.nmf",
        "filesystem.js"
    ]
}