Todobook

Turn the Facebook News Feed into a todo list so you can stop wasting time and start getting things done. Also works for LinkedIn,…

Todobook là gì?

Todobook là một tiện ích mở rộng Chrome được phát triển bởi Yummy Apps, và tính năng chính của nó là "Turn the Facebook News Feed into a todo list so you can stop wasting time and start getting things done. Also works for LinkedIn,…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Todobook

Tải xuống các tệp mở rộng Todobook dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Turn the Facebook News Feed into a todo list so you can stop wasting time and start getting things done. 

Also works for LinkedIn, YouTube, Reddit, Twitter, Product Hunt, and Hacker News.

Once you've completed all your todos you can use News Feed again. If you need a break, you can disable Todobook for the day via the Todobook icon in your browser's toolbar.

Todobook DOES NOT access, read, edit, or store ANY of your data on Facebook, and never will. And it will NEVER post anything to Facebook on your behalf. It also requires access to your navigation history so that it can detect when you're on facebook.com. It DOES NOT read, transmit, or store any browsing history, it simply detects your current url.

Tip: You can configure the break time, the frequency of breaks, and you can turn on 'work hours' via the gear icon in the top right of the extension UI once you've loaded facebook.com. If you turn on 'work hours', the extension will only be active between 8am and 6pm, Monday through Friday.

"This Chrome extension makes your Facebook addiction productive" - Mashable
"The best Facebook productivity tool ever built." - Wersm.com
"Turns Facebook into a super-smart productivity tool." - The Next Web                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Todobook Todobook
ID ihbejplhkeifejcpijadinaicidddbde
URL Chính Thức https://chromewebstore.google.com/detail/todobook/ihbejplhkeifejcpijadinaicidddbde
Mô tả Turn the Facebook News Feed into a todo list so you can stop wasting time and start getting things done. Also works for LinkedIn,…
Kích Thước Tệp 788 KB
Số Lần Cài Đặt 3,928
Phiên Bản Hiện Tại 1.3.7
Cập Nhật Lần Cuối 2019-05-11
Ngày Phát Hành 2019-05-09
Đánh Giá 4.73/5 Tổng số 194 Đánh Giá
Nhà Phát Triển Yummy Apps
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://developer.chrome.com/webstore/terms
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Todobook",
    "version": "1.3.7",
    "permissions": [
        "tabs",
        "storage",
        "unlimitedStorage",
        "declarativeContent"
    ],
    "icons": {
        "16": "images\/logo_16.png",
        "48": "images\/logo_48.png",
        "128": "images\/logo_128.png"
    },
    "optional_permissions": [
        "*:\/\/twitter.com\/*",
        "*:\/\/www.reddit.com\/*",
        "*:\/\/news.ycombinator.com\/*",
        "*:\/\/www.producthunt.com\/*",
        "https:\/\/www.youtube.com\/*",
        "*:\/\/www.linkedin.com\/*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self';",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/facebook.com\/*",
                "http:\/\/facebook.com\/*",
                "https:\/\/www.facebook.com\/*",
                "http:\/\/www.facebook.com\/*"
            ],
            "js": [
                "lib\/moment.min.js",
                "lib\/helpers.js",
                "lib\/jquery.min.js",
                "lib\/sortable.min.js",
                "content.js",
                "services\/fb_content.js"
            ],
            "css": [
                "css\/font-awesome.css",
                "css\/todobook.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "lib\/moment.min.js",
            "lib\/helpers.js",
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "images\/logo_48.png",
        "default_title": "Todobook",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "web_accessible_resources": [
        "fonts\/*",
        "images\/*",
        "css\/*"
    ]
}