Data Graph

Creates a visual plot or graph from numerical data on a web page.

ما هو Data Graph؟

Data Graph هو إضافة Chrome تم تطويرها بواسطة b romney، والميزة الرئيسية لها هي "Creates a visual plot or graph from numerical data on a web page.".

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

screenshot

تحميل ملف CRX للإضافة Data Graph

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

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

                        Creates a visual plot or graph from numerical data on a web page.  At this time highlighted / selected text and HTML table elements are supported.  This is really just getting started with development; feel free to submit any feedback on the form found at https://desolate.netlify.com                    

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

الاسم Data Graph Data Graph
ID pfbdpmafjjljecigflhnpmnpnlicjggg
عنوان URL الرسمي https://chromewebstore.google.com/detail/data-graph/pfbdpmafjjljecigflhnpmnpnlicjggg
الوصف Creates a visual plot or graph from numerical data on a web page.
حجم الملف 421 KB
عدد التثبيتات 113
النسخة الحالية 0.1
آخر تحديث 2018-11-01
تاريخ النشر 2018-10-27
المطور b romney
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://desolate.netlify.com
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Data Graph",
    "description": "Creates a visual plot or graph from numerical data on a web page.",
    "version": "0.1",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "script.js"
        ]
    },
    "browser_action": {
        "default_title": "Graph Settings",
        "default_icon": "icon.png",
        "default_popup": "graph.html"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "graph.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.google.com\/; object-src 'self'"
}