Tagger

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

Tagger क्या है?

Tagger jaewoong.info द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Tag web pages so that you can easily find it later."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Tagger एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
}