Awesome Click

Perform actions in one click!

Awesome Click क्या है?

Awesome Click Lazy Guys द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Perform actions in one click!"।

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

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

crx प्रारूप में Awesome Click एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Perform actions with one click!

Whats new:
-added analytics
-update notification icon

Feature Highlight:
★ Clear Browsing Data
★ Tab Conversion
★ Tab Screen Shot
★ Drag to Download
★ Drag to open in new tab
★ Highlight to Search/Translate
★ highlight to search Wikipedia
★ highlight to share on Facebook

Release Note:

v1.0.8
Bug fixes:
-drag to open new tab position adjustment
-multiple setting page issue
------------------------------------------------------
v1.0.6
Bug Fixes:
- UI error.
------------------------------------------------------
v1.0.5
Bug fixes:
-adjust highlight balloon position
-fix issue when highlight special characters

New feature:
-highlight to search wikipedia
-highlight to share on facebook
------------------------------------------------------
v1.0.4:

Bug fixes:
-Highlight issue fixes

New feature:
-Drag to open in new tab
------------------------------------------------------                    

एक्सटेंशन की मूल जानकारी

नाम Awesome Click Awesome Click
ID npledglpganelphpgmmadjfacplmibmk
आधिकारिक URL https://chrome.google.com/webstore/detail/awesome-click/npledglpganelphpgmmadjfacplmibmk
विवरण Perform actions in one click!
फ़ाइल का आकार 792 KB
स्थापना संख्या 19
वर्तमान संस्करण 1.0.9
अंतिम अपडेट 2013-12-01
प्रकाशन तिथि 2013-12-01
रेटिंग 4.71/5 कुल 14 रेटिंग्स
डेवलपर Lazy Guys
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Awesome Click",
    "description": "Perform actions in one click!",
    "version": "1.0.9",
    "browser_action": {
        "default_icon": "icon19.png",
        "default_title": "Awesome Click settings"
    },
    "icons": {
        "16": "icon16.png",
        "19": "icon19.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "browsingData",
        "tabs",
        "*:\/\/*\/*",
        "notifications",
        "tabCapture"
    ],
    "commands": {
        "Q": {
            "suggested_key": {
                "default": "Ctrl+Shift+Q",
                "mac": "Command+Shift+Q"
            },
            "description": "run background.js"
        },
        "Z": {
            "suggested_key": {
                "default": "Ctrl+Shift+Z",
                "mac": "Command+Shift+Z"
            },
            "description": "run background.js"
        },
        "A": {
            "suggested_key": {
                "default": "Ctrl+Shift+A",
                "mac": "Command+Shift+A"
            },
            "description": "run background.js"
        },
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+E",
                "mac": "Command+Shift+E",
                "chromeos": "Ctrl+Shift+E",
                "linux": "Ctrl+Shift+E"
            }
        }
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery-min.js",
                "drag_to_download.js",
                "highlight.js",
                "drag_to_open_new_tab.js"
            ],
            "css": [
                "highlight.css"
            ],
            "run_at": "document_end"
        }
    ]
}