Backnote

Saving text snippets made easy. Call a tab on hotkeys and copy/paste text with just moving cursor.

Backnoteคืออะไร?

Backnote เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dmitry Polevoy และคุณลักษณะหลักของมันคือ "Saving text snippets made easy. Call a tab on hotkeys and copy/paste text with just moving cursor."

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

screenshot
screenshot
screenshot

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

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

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

                        Backnote is fast and easy way to improve your productivity. Make a notes on a fly by doing copy and paste without any keys, just by highlighting text. Build a sheet from each session and save it as text file in one click.

🍏 Minimalistic
Activate in one click, make a note and save it in one click, too.

🛴 Easy-to-use
Quick mouse movements instead of window switching with hotkeys and clicks.

🏁 Fast
Light and simple substitution for a notepad in your browser.


How to use:

💡 Make sure extension active and icon light green in top right corner

📄 Open backnote window on CTRL+SHIFT+V hotkeys*

📝 Highlight a text with a mouse and release button to copy it to a backnote window**

💾 Click 'Save' when you done to download note with optional name, or 'backnote.txt' by default


* You can change a hotkeys in Extensions -> Keyboard Shortcuts menu

** Once you highlighted text and released left mouse button - text is saved. Just open a Backnote to see it

*** This extension is free and doesn't contain any ads

v1.71 - fixed minor icon bug

👨‍🎨 Dmitry Polevoy
📨 [email protected]                    

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

ชื่อ Backnote Backnote
ID gcikdkpooobdlgkkimomdgochmclliek
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/backnote/gcikdkpooobdlgkkimomdgochmclliek
คำอธิบาย Saving text snippets made easy. Call a tab on hotkeys and copy/paste text with just moving cursor.
ขนาดไฟล์ 10.7 KB
จำนวนการติดตั้ง 219
เวอร์ชันปัจจุบัน 1.71
อัปเดตครั้งล่าสุด 2019-01-04
วันที่เผยแพร่ 2019-01-04
คะแนน 4.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Dmitry Polevoy
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Backnote",
    "description": "Saving text snippets made easy. Call a tab on hotkeys and copy\/paste text with just moving cursor.",
    "version": "1.71",
    "homepage_url": "https:\/\/polevoyd.com",
    "options_page": "options.html",
    "icons": {
        "128": "images\/icon_on.png"
    },
    "browser_action": {
        "default_icon": {
            "48": "images\/icon_on.png"
        },
        "default_title": "Backnote"
    },
    "background": {
        "scripts": [
            "background.js",
            "edit-note.js"
        ]
    },
    "commands": {
        "backnote": {
            "suggested_key": {
                "default": "Ctrl+Shift+V"
            },
            "description": "Sending request to open a backnote tab"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "",
        "downloads"
    ]
}