Productivity Pigeon
Block sites simply!
Productivity Pigeon क्या है?
Productivity Pigeon a9 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Block sites simply!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Productivity Pigeon एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Block sites simply! An open source site blocker to keep your productivity up and block distracting sites. Keyboard shortcuts available. Ctrl/Cmd-Shift-X to toggle. Others can be customized. Source available here: https://github.com/maxkrieger/productivity-pigeon
एक्सटेंशन की मूल जानकारी
नाम | Productivity Pigeon |
ID | doiacekollomjlchgjcfnimkepajgoem |
आधिकारिक URL | https://chromewebstore.google.com/detail/productivity-pigeon/doiacekollomjlchgjcfnimkepajgoem |
विवरण | Block sites simply! |
फ़ाइल का आकार | 133 KB |
स्थापना संख्या | 33 |
वर्तमान संस्करण | 0.1.1 |
अंतिम अपडेट | 2018-06-11 |
प्रकाशन तिथि | 2018-06-11 |
रेटिंग | 5.00/5 कुल 4 रेटिंग्स |
डेवलपर | a9 |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/maxkrieger/productivity-pigeon |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.1.1", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "permissions": [ "webRequest", "webRequestBlocking", "http:\/\/*\/*", "https:\/\/*\/*", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "browser_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_title": "Productivity Pigeon", "default_popup": "popup.html" }, "commands": { "blocking_on": { "description": "Turn blocking of the sites ON" }, "blocking_off": { "description": "Turn blocking of the sites OFF" }, "blocking_toggle": { "suggested_key": { "default": "Ctrl+Shift+X", "mac": "Command+Shift+X" }, "description": "Toggle if sites are blocked" } }, "web_accessible_resources": [ "blocked.html", "images\/*.png", "fonts\/*" ] } |