Efficient Coder

Developer dashboard to produce desired results without wasting your time and energy

Efficient Coderคืออะไร?

Efficient Coder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Efficient Coder และคุณลักษณะหลักของมันคือ "Developer dashboard to produce desired results without wasting your time and energy"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Efficient Coder

ดาวน์โหลดไฟล์ส่วนขยาย Efficient Coder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Efficient Coder replaces the new tab page with a developer dashboard that helps you become a more efficient developer. Increase your productivity with features like code-snippet management, optimized search, focus periods, site blocking, to-do list, and more.

💡Key features:
Check some of the main features that help you produce desired results without wasting your time and energy. You don't need to start heavy-weight apps to manage simple tasks. With the Efficient Coder extension, everything is in your browser.

✨Code-snippet management
Save code-snippets from any website with a single click. Find and organize snippets with tags and colors without using any extra tool. 
You can also add wiki snippets using Markdown language.

✨Optimized search
Things are changing fast in the IT industry. Google search results often include outdated or spam results. With Efficient Coder, you can set how old pages are listed and exclude unwanted sites from search results.

✨Focus periods with site blocking
The extension also includes a Pomodoro timer. Efficient Coder blocks distracting sites during the focus period. 

✨To-do management
Keep your daily tasks in front of you at all times. There can be a lot of small to-dos that you don't want to store in your company project management system. You can write it down here and make sure you don't forget.

✨Bookmark management
The built-in bookmark manager makes it easy to group your most important websites.

✨Motivation tools
Motivational quotes and music help you to get into the zone.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Efficient Coder Efficient Coder
ID adijbdecjgbjfelkjjjgblkadealkkfg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/efficient-coder/adijbdecjgbjfelkjjjgblkadealkkfg
คำอธิบาย Developer dashboard to produce desired results without wasting your time and energy
ขนาดไฟล์ 1.9 MB
จำนวนการติดตั้ง 67
เวอร์ชันปัจจุบัน 0.2.1
อัปเดตครั้งล่าสุด 2022-04-14
วันที่เผยแพร่ 2022-02-02
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Efficient Coder
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://effcod.com/
URL หน้านโยบายความเป็นส่วนตัว https://effcod.com/privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Efficient Coder",
    "version": "0.2.1",
    "description": "Developer dashboard to produce desired results without wasting your time and energy",
    "icons": {
        "16": "\/static\/images\/icon_16.png",
        "48": "\/static\/images\/icon_64.png",
        "128": "\/static\/images\/icon_128.png"
    },
    "action": {
        "default_icons": {
            "16": "\/static\/images\/icon_16.png",
            "24": "\/static\/images\/icon_24.png",
            "32": "\/static\/images\/icon_32.png"
        },
        "default_title": "Developer Focus Tab",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "chrome_url_overrides": {
        "newtab": "tab.html"
    },
    "permissions": [
        "storage",
        "alarms",
        "declarativeNetRequest",
        "notifications",
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "static\/audio\/start_timer.mp3",
                "static\/audio\/end_timer.mp3",
                "blocked.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}