WallabagIt

View/Edit/Add Wallabag Items

WallabagItคืออะไร?

WallabagIt เป็นส่วนขยายของ Chrome ที่พัฒนาโดย faulk.me และคุณลักษณะหลักของมันคือ "View/Edit/Add Wallabag Items"

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

screenshot
screenshot
screenshot

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

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

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

                        WallabagIt is a Chrome extension that integrates with the Wallabag "Read It When You Want" app (https://www.wallabag.org/)

HOW TO INSTALL:

For Wallabag v2 you will need to create a API client:
1. Go to the "Developer" tab on wallabag server
2. Click "Create a new client"
3. Put any URL in you wish for the "Redirect URIs", it doesn't matter it is not used by this app
4. Click "Create a new client" button
5. Use the "Client ID" and "Client secret" that are created and fill in the field under this apps options page


v2.1
* Removed support for Wallabag v1
* Added context menu option to add page
* Added the ability to change how bags are displayed, title, title and URL or URL only
* A lot of backend code reworking, mostly to make it easier to read/manage

v1.1.0
* Some error handling, thanks to funwhilelost
* Added the ability to add/remove tags from entries

v1.0.1
* Added a shortcut key to add the current tab to your Wallabag app (default: Alt + Shift + W)

v1.0.0
* Wallabag v2 support

v0.6.1
* Fixed some issues with displaying of the actions on some systems.

v0.6
* It now checks to see if the API is configured correctly (requires the updated version of the wallabag api add-on for this to work)
* Some bug fixes.
* Some visual changes/fixes.
* The WallabagIt text at the bottom now links to your wallabag site.

v0.5.1
* Visual changes

v0.5
* A number of visual changes
* Background event page to handle updating of feeds as changes are made
* Items are now immediately removed when they are archived/unarchived,
fav'ed or deleted
* Added the option to have links go to either the Wallabag page or directly to the page.
* Fixed a few bugs

v0.3
* Bug fix to the load options page button.
* Added a loading icon.
* Made it so it doesn't reload the feed when you fav/unfav an item.
* Added title descriptions to the archive, fav, remove icons.                    

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

ชื่อ WallabagIt WallabagIt
ID peehlcgckcnclnjlndmoddifcicdnabm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/wallabagit/peehlcgckcnclnjlndmoddifcicdnabm
คำอธิบาย View/Edit/Add Wallabag Items
ขนาดไฟล์ 266 KB
จำนวนการติดตั้ง 300
เวอร์ชันปัจจุบัน 2.1.1
อัปเดตครั้งล่าสุด 2018-06-05
วันที่เผยแพร่ 2018-06-05
คะแนน 4.29/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา faulk.me
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/faulker/WallabagIt
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WallabagIt",
    "description": "View\/Edit\/Add Wallabag Items",
    "icons": {
        "16": "img\/wallabag-icon-48.png",
        "48": "img\/wallabag-icon-128.png",
        "128": "img\/wallabag-icon-128.png"
    },
    "version": "2.1.1",
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/wallabagit\/peehlcgckcnclnjlndmoddifcicdnabm",
    "options_page": "options.html",
    "background": {
        "scripts": [
            "js\/jquery.min.js",
            "js\/components\/settings.js",
            "js\/components\/auth.js",
            "js\/components\/api.js",
            "js\/listeners.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_name": "WallabagIt",
        "default_icon": "img\/wallabag-icon-48.png",
        "default_popup": "popup.html"
    },
    "commands": {
        "wallabag-page": {
            "suggested_key": {
                "default": "Alt+Shift+W",
                "mac": "Ctrl+Shift+W"
            },
            "description": "Save a page to your Wallabag app"
        }
    },
    "permissions": [
        "",
        "tabs",
        "storage",
        "commands",
        "contextMenus"
    ]
}