Context

Context makes reading any Wikipedia article easier and more rewarding.

ما هو Context؟

Context هو إضافة Chrome تم تطويرها بواسطة Jeshua Maxey، والميزة الرئيسية لها هي "Context makes reading any Wikipedia article easier and more rewarding.".

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

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Context

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

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

                        Ever found yourself reading a Wikipedia article and come across a word, person, event or concept you haven't heard of before? Without Context, you'd have to open that link, read up on the topic and then navigate back to your original article to pick up where you left off.

With Context you can click that link and the contents of that Wikipedia article are presented to you without leaving the page. This link is also highlighted in the main text so you can easily find your  you place back in the article when you're done reading around the topic.

If you're on a slow internet connection or tethering to a 3G device, Context will reduce your data usage. Instead of loading up a brand new page of Wikipedia every time you need to learn something new, Context harnesses the Wikipedia API to fetch only the information you need.

Context is designed to feel like it's a feature of Wikipedia.org itself and not an add-on. You'll soon wonder how you ever used Wikipedia without it.

Updates:
v0.0.4 adds support for:
- sticks the box to the bottom. No more dragging it around the place
- fixes redirect handling

v0.0.3 adds support for:
- improved about page
- adjusting the height of the Context box
- matched wikipedia's layout for all window sizes

v0.0.2 adds support for:
- more consistent parsing of wikitext (better formatted contexts)
- images in Context box
- less buggy URL manipulation

Context is in early beta and has not been extensively tested. It currently only works in English. Please report any bugs you discover on twitter or via email:

http://twitter.com/jeshuamaxey
me[at]jeshua[dot]co (Please include "Context" in the subject)

Note: Jeshua Maxey has no affiliation with Wikipedia.                    

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

الاسم Context Context
ID khbphcbegchkpcfhlikpgjejoiokegpg
عنوان URL الرسمي https://chromewebstore.google.com/detail/context/khbphcbegchkpcfhlikpgjejoiokegpg
الوصف Context makes reading any Wikipedia article easier and more rewarding.
حجم الملف 980 KB
عدد التثبيتات 165
النسخة الحالية 0.0.6
آخر تحديث 2015-03-16
تاريخ النشر 2015-03-16
تقييم 5.00/5 مجموع تقييمات 2
المطور Jeshua Maxey
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Context",
    "version": "0.0.6",
    "manifest_version": 2,
    "description": "Context makes reading any Wikipedia article easier and more rewarding.",
    "homepage_url": "http:\/\/jeshua.co\/context-extension-chrome\/",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "page": "src\/bg\/background.html",
        "persistent": true
    },
    "options_page": "src\/options_custom\/index.html",
    "permissions": [
        "tabs",
        "*:\/\/*.wikipedia.org\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.wikipedia.org\/wiki\/*"
            ],
            "css": [
                "src\/inject\/css\/inject.css",
                "css\/jquery-ui.css"
            ],
            "js": [
                "js\/jquery\/jquery.js",
                "js\/jquery-ui\/jquery-ui.js",
                "js\/wiki2html\/wiki2html.js",
                "src\/inject\/js\/inject.js"
            ]
        }
    ]
}