Add this page to Trello

Add this page to Trello as new task

ما هو Add this page to Trello؟

Add this page to Trello هو إضافة Chrome تم تطويرها بواسطة https://www.muratayusuke.com، والميزة الرئيسية لها هي "Add this page to Trello as new task".

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

screenshot

تحميل ملف CRX للإضافة Add this page to Trello

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

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

                        Simple extension for Trello user to add current page to Trello as new task.                    

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

الاسم Add this page to Trello Add this page to Trello
ID fjfljghieliggacelkamhfiiejncmjmi
عنوان URL الرسمي https://chromewebstore.google.com/detail/add-this-page-to-trello/fjfljghieliggacelkamhfiiejncmjmi
الوصف Add this page to Trello as new task
حجم الملف 53.6 KB
عدد التثبيتات 552
النسخة الحالية 0.105
آخر تحديث 2015-06-06
تاريخ النشر 2015-06-05
تقييم 3.33/5 مجموع تقييمات 3
المطور https://www.muratayusuke.com
نوع الدفع free
اللغات المدعومة en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "version": "0.105",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "icons": {
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "background": {
        "scripts": [
            "jquery-2.1.3.min.js",
            "main.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_title": "Add this page to Trello",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "http:\/\/*\/*\/",
        "https:\/\/*\/*\/"
    ]
}