RWeb

Simple tool for customizing websites by adding your own CSS & JS.

RWeb란 무엇입니까?

RWeb은(는) Rudie Dirkx에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple tool for customizing websites by adding your own CSS & JS."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This extension allows you to add per-domain custom CSS and JS. It stores those settings locally OR in your Google profile, depending on the setting per site.

It's a combination of:

* StyleBot, but adds JS and a much simpler UI
* Personalized Web, but adds online storage and a browser action button for easier access

It does:

* add CSS to any domain
* add custom JS to any domain
* add custom CSS to the extension's options page (in case you don't like my UI design skillz)
* store your settings online (optional, connected Google Drive)
* export your sites to JSON format
* import your JSON with UUIDs, so you can sync manually between computers or as backup
* have a simple UI that saves with CTRL+S or ENTER and a browser action button to point to it

It does NOT:

* add a slick DOM element selector tool like StyleBot

Changelog:

1.29
host:port bugfix. Storage/oauth/WebExt fixes. Site sorting bugfix.

1.24 - 1.28
Getting WebExtensions compatible. Soon available in Firefox!

1.22 - 1.23
Added ** wildcard for anything. Fewer console messages. Bug in site order with 'all' and 'matches' sites.

1.21
Able to delete sites across computers. Optional delayed load/ready callback.

1.20
Added wildcard domains: `*.wikia.com`, `my.*.com` etc. Improved temporary disable (on page action button).

1.19
Sync log+. Options UI+. Live CSS propagation+.

1.18
Options UI+. Sync log+. Log UI+.

1.17
Sign-in bug fixed. Fewer, more precise auto uploads. Added code search.

1.16
Pretty shameful bug in updating existing sites in download. Improved import summary & details.

1.15
Bug in sync report that broke auto sync.

1.14
Sync optional, so no more sign in popups. Prettier sync button loading.

1.13
Automatic sync with Google Drive. Added sync log. Added inline stats (option).

1.12
Fixed history/stats. Better Google Drive (error) handling.

1.11
Moved from Google's Extension Data (sync) to Google Drive, because manually is better than automagic. Added 'all sites' token. Better document check (not in XML docs). More detailed import.

1.10
Handle errors in decoding online data. Discarding for now. **Back up your sites data!**

1.9
Import bugfix.

1.8
Stats+, faster loading for big online storage, browser action contextmenu label+.

1.7
Improved stats, help, options auto-indent, dis/enabling. **Disabling a site moved from page contextmenu to the icon's contextmenu!**

1.6
Bugs in: auto re-cache, site hilite, css propagation.

1.5
Bugs in: disabled sites, auto indent, auto-re-cache.
Added options: fix outline, extend NodeList.

1.3
Added live CSS reload/refresh/update after saving a site on the options page, so no page refresh necessary anymore!

1.2
Added UUID and import.

1.1
Added (prefs and) onBrowserButtonClick option. Maybe added onBeforeUnload (or was that 1.0?).                    

확장 프로그램 기본 정보

이름 RWeb RWeb
ID opiijdljnckiadkfcjjmajieannaigmd
공식 URL https://chromewebstore.google.com/detail/rweb/opiijdljnckiadkfcjjmajieannaigmd
설명 Simple tool for customizing websites by adding your own CSS & JS.
파일 크기 53.37 KB
설치 횟수 2,000
현재 버전 1.29
최근 업데이트 2018-11-24
출시 날짜 2018-11-24
평점 3.87/5 총 15 개의 평점
개발자 Rudie Dirkx
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/rudiedirkx/RWeb
도움말 페이지 URL https://github.com/rudiedirkx/RWeb
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RWeb",
    "description": "Simple tool for customizing websites by adding your own CSS & JS.",
    "version": "1.29",
    "permissions": [
        "storage",
        "tabs",
        "contextMenus",
        "identity",
        ""
    ],
    "options_page": "options\/options.html",
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "rweb.helpers.js",
                "rweb.content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "rweb.helpers.js",
            "rweb.sync.js",
            "rweb.background.js"
        ]
    },
    "browser_action": {
        "browser_style": false,
        "default_title": "RWeb - Edit custom CSS\/JS",
        "default_icon": {
            "38": "images\/38x38.png",
            "19": "images\/19x19.png"
        }
    },
    "oauth2": {
        "client_id": "559705211499-5c5ul38obg7epc9n71626dqavikoiuvj.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/drive.file"
        ]
    },
    "icons": {
        "128": "images\/128x128.png",
        "64": "images\/64x64.png",
        "48": "images\/48x48.png",
        "32": "images\/32x32.png",
        "16": "images\/16x16.png"
    },
    "manifest_version": 2
}