Attention

Watch your browsing habits and get reminded when wasting time.

Attention क्या है?

Attention Alsonax द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Watch your browsing habits and get reminded when wasting time."।

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

screenshot

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

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

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

                        Attention keeps track of the websites you visit and stops you from wasting lots of time on distracting websites. It doesn't block websites straight away, but shows a reminder which is impossible to ignore.

- no setup required, just rate the websites you frequently visit
- your browsing history is private, all data stays in the browser                    

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

नाम Attention Attention
ID nmejnlclcnjakdbpfehhcobbmlcpbiba
आधिकारिक URL https://chromewebstore.google.com/detail/attention/nmejnlclcnjakdbpfehhcobbmlcpbiba
विवरण Watch your browsing habits and get reminded when wasting time.
फ़ाइल का आकार 745 KB
स्थापना संख्या 289
वर्तमान संस्करण 0.2.12
अंतिम अपडेट 2015-01-11
प्रकाशन तिथि 2015-01-11
रेटिंग 4.00/5 कुल 5 रेटिंग्स
डेवलपर Alsonax
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Attention",
    "version": "0.2.12",
    "manifest_version": 2,
    "description": "Watch your browsing habits and get reminded when wasting time.",
    "offline_enabled": true,
    "icons": {
        "16": "icons\/green-16.png",
        "48": "icons\/app-48.png",
        "128": "icons\/app-128.png"
    },
    "background": {
        "scripts": [
            "vendor\/moment\/moment.js",
            "src\/persistence\/options.js",
            "src\/persistence\/store.js",
            "src\/background\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/gray-16.png"
        },
        "default_title": "Attention"
    },
    "options_page": "src\/options\/index.html",
    "permissions": [
        "chrome:\/\/favicon\/",
        "storage",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "vendor\/zepto\/zepto.min.js",
                "src\/inject\/inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "src\/popup\/*",
        "test\/*",
        "icons\/*",
        "vendor\/*"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'"
}