Wallabagger

This wallabag v2 extension has the ability to edit title and tags and set starred, archived, or delete states.

Wallabagger란 무엇입니까?

Wallabagger은(는) wallabagger-developers에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This wallabag v2 extension has the ability to edit title and tags and set starred, archived, or delete states."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Wallabagger 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Wallabagger is extension for add pages to wallabag, with ability to:

save current page
edit title
add (with autocomplete!) and remove tags
set starred and archived
delete

What is wallabag?

wallabag is a self hostable application allowing you to not miss any content anymore. More informations on website: wallabag.org

New in 1.16.0
- adds an option to fetch locally by default

New in 1.15.0
- Translations updated

New in 1.14.0
- Fetch content directly from the browser

New in 1.13.1
- Avoid unarchive state if ArchiveByDefault not set (existing entries were unarchive by default)

New in 1.13.0
- Add support for dark theme in Firefox
- popup: Make delete button primary

New in 1.12.0
- Update Croatian translation for messages.json
- Update German translation for messages.json

New in 1.11.0
- Add Croatian (hr) translation
- Auto add tag if found only one
- Default popup wallabag icon style updated (vertical spacing added)
- Input values trimmed (copy/paste with extra starting or ending spaces cleaned)


New in 1.10.4
- reducing permissions

New in 1.10
- Japanese translation
- backspace returns last tag to edit
- Fix popup action buttons accessibility
- selecting and deleting tags with keyboard


New in 1.9
- china translation
- option for automatic archive article

New in 1.7
- Open preferences in another tab (same behavior between browsers)
- Responsive layout improved
- Better wallabag's URL handling (protocol removing, protocol type detection)
- Fix icon keeping the good green status
- Meta charset added to popup.html
- Fix translation typo
- Open options page after installed

New in 1.6 
-some fixes

New in 1.4.5
- French and Russian translations
- some fixes

New in 1.4.4
-navigate in found tags with Ctrl+Arrows
-some fixes

New in v1.3
- Indication that this page is already saved by green icon 
- Option to enable\disable indication

New in v1.2
- Hotkeys for background saving
- Context menu for saving page and link
- Context menu items for goto various wallabag pages
- Tagging work improvements
- Webextension compatibility - works in Firefox browser

New in v1.1
- Fixed archived flag
- implements : option "Allow space in tags" switch fix tags key to enter
- focus set to tag input right after open
- right key add first found tag

New in v1.4 
- totally asyncronous, much faster

New in v1.4.2
- fixed saving with context menu                    

확장 프로그램 기본 정보

이름 Wallabagger Wallabagger
ID gbmgphmejlcoihgedabhgjdkcahacjlj
공식 URL https://chromewebstore.google.com/detail/wallabagger/gbmgphmejlcoihgedabhgjdkcahacjlj
설명 This wallabag v2 extension has the ability to edit title and tags and set starred, archived, or delete states.
파일 크기 453 KB
설치 횟수 7,307
현재 버전 1.16.0
최근 업데이트 2023-04-20
출시 날짜 2020-03-03
평점 3.92/5 총 26 개의 평점
개발자 wallabagger-developers
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/wallabag/wallabagger
도움말 페이지 URL https://github.com/wallabag/wallabagger/issues
지원되는 언어 id,de,en,fr,nl,tr,ca,da,es,hr,it,lt,hu,pl,ro,sv,cs,el,ru,uk,fa,hi,th,ar,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wallabagger",
    "manifest_version": 2,
    "default_locale": "en",
    "version": "1.16.0",
    "description": "__MSG_Extension_description__",
    "icons": {
        "48": "img\/wallabag-icon-48.png",
        "128": "img\/wallabag-icon-128.png"
    },
    "browser_action": {
        "default_title": "Wallabagger",
        "default_icon": "img\/wallabag-icon-48.png",
        "theme_icons": [
            {
                "dark": "img\/wallabagger.svg",
                "light": "img\/wallabagger-light.svg",
                "size": 32
            }
        ],
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/common.js",
            "js\/fetch-api.js",
            "js\/wallabag-api.js",
            "js\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "contextMenus",
        "activeTab"
    ],
    "optional_permissions": [
        "*:\/\/*\/api\/*"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+W",
                "windows": "Alt+W",
                "mac": "Alt+W"
            }
        },
        "wallabag-it": {
            "suggested_key": {
                "default": "Alt+Shift+W",
                "windows": "Alt+Shift+W",
                "mac": "Alt+Shift+W"
            },
            "description": "__MSG_Wallabag_it_description__"
        }
    }
}