Tagger

Tag web pages so that you can easily find it later.

ما هو Tagger؟

Tagger هو إضافة Chrome تم تطويرها بواسطة jaewoong.info، والميزة الرئيسية لها هي "Tag web pages so that you can easily find it later.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        A chrome extension to enable OS X style tagging on web pages.  
Tagged pages are highlighted on search results pages.

By default, highlighting works on Google, Duckduckgo, Yahoo and Bing.
You can change settings on options page.

Feel free to contribute or report issues: https://github.com/jaewoongh/tagger-chrome                    

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

الاسم Tagger Tagger
ID hedcldmdcdgjaccenecldaklgfkmceaf
عنوان URL الرسمي https://chromewebstore.google.com/detail/tagger/hedcldmdcdgjaccenecldaklgfkmceaf
الوصف Tag web pages so that you can easily find it later.
حجم الملف 34.38 KB
عدد التثبيتات 18
النسخة الحالية 1.0
آخر تحديث 2014-11-19
تاريخ النشر 2014-11-19
تقييم 3.00/5 مجموع تقييمات 1
المطور jaewoong.info
نوع الدفع free
موقع الإضافة https://github.com/jaewoongh/tagger-chrome
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tagger",
    "version": "1.0",
    "description": "Tag web pages so that you can easily find it later.",
    "author": "Jaewoong Hwang",
    "permissions": [
        "webNavigation",
        "tabs",
        "storage",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon-bitty.png",
        "48": "icon-small.png",
        "128": "icon-large.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "tagger.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": {
            "19": "pageicon.png",
            "38": "pageicon2x.png"
        },
        "default_title": "Tag",
        "default_popup": "popup.html"
    },
    "options_page": "options.html"
}