Global Notes

Saves the link of the current page to the Global Notes.

Global Notesคืออะไร?

Global Notes เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Oleg Schildt และคุณลักษณะหลักของมันคือ "Saves the link of the current page to the Global Notes."

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

screenshot
screenshot

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

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

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

                        The Global Notes are a solution for the centralized storage and accessing of the bookmarks. It has the following key features:

- Quick and easy saving of the link to the current page over the Chrome Extension in the database

- Quick search and access to the stored bookmarks over an easy and quick backend interface or over the standard FireFox search field

The Global Notes consist of two parts:

- A Chrome Extension, which has to be installed into the Chrome.

- A Backend WEB application, written on PHP 5.2.x and MySQL 5.x. This application should be downloaded and installed either by your provider or at your own server. The installation is done over a simple wizard and is easy for anybody. 

Download link:

http://www.point-constructor.com/en/globalnotes/#downloads

Saving of a bookmark:

While surfing, the user does one click to call the edit mask – either over the context menu (right mouse button) or over the hot key [Ctrl+F9]. Then, he does the second click - OK button or the second time [Ctrl+F9] - to store the link and additional information to the backend. The title and the URL are automatically placed in to the edit mask. If the user has selected some text, it is also automatically placed into the edit mask. Optionally, the user can provide some keywords and assign the bookmark to tags.

Searching saved bookmarks:

The user comes directly to the note list; the search field gets the focus, so that the user can directly type in the search key and press the Enter to find the desired bookmark and click the target link.                    

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

ชื่อ Global Notes Global Notes
ID ofgbfonibdocngeefenfbgkhekkcklod
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/global-notes/ofgbfonibdocngeefenfbgkhekkcklod
คำอธิบาย Saves the link of the current page to the Global Notes.
ขนาดไฟล์ 59.08 KB
จำนวนการติดตั้ง 40
เวอร์ชันปัจจุบัน 2.0
อัปเดตครั้งล่าสุด 2014-06-10
วันที่เผยแพร่ 2014-06-10
ผู้พัฒนา Oleg Schildt
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.point-constructor.com/en/globalnotes/
URL หน้าช่วยเหลือ http://www.point-constructor.com/en/globalnotes/downloads/UserGuide.pdf
ภาษาที่รองรับ de,en-US,pl,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Global Notes",
    "version": "2.0",
    "manifest_version": 2,
    "description": "Saves the link of the current page to the Global Notes.",
    "icons": {
        "128": "icon128.png",
        "64": "icon64.png",
        "48": "icon48.png",
        "32": "icon32.png",
        "24": "icon24.png",
        "16": "icon16.png"
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "icon32.png"
    },
    "background": {
        "scripts": [
            "GlobalNotesBG.js",
            "GlobalNotes.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "GlobalNotesCS.js",
                "GlobalNotes.js",
                "GlobalNotesAjax.js"
            ]
        }
    ],
    "default_locale": "en_US",
    "web_accessible_resources": [
        "loading.gif",
        "title.gif",
        "GlobalNotes.css"
    ],
    "permissions": [
        "tabs",
        "idle",
        "notifications",
        "contextMenus",
        "unlimitedStorage",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}