OWLS Word Games Enhancer

This extension provides auxiliary features to popular word games

OWLS Word Games Enhancer란 무엇입니까?

OWLS Word Games Enhancer은(는) http://dalevross.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension provides auxiliary features to popular word games"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

OWLS Word Games Enhancer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        # Chrome-OWLS-Word-Games_Enhancer
This extension offers a one click option to view remaining tiles in the Lexulous, Wordscraper and Scrabble games played on facebook.

========================
** Important **
Removing the extension deletes all notes!
========================

An owl will appear in the browser bar when the user browses to the games page. Clicking on the owl while in a game will display the available tiles.

Contributor(s)
 - Dale V. Ross
 - Elliot Manley

Change Log:
----------------------
4.0.0.2
- Fixed Bug causing loading issue
- Addressed missing icons

4.0.0.1
- Reintroduced Easter egg
- Long wait time in Store

4.0.0
- Removed easter egg
- Added some features

3.1.4.1
 - Updated extension to support MSI Scrabble

3.1.4
 - Address code related issue raised by Google Chrome Web Store team

2.2.7
 - Addressed issue with blanks not showing in remaining tiles

2.2.6
 - Added max height and width to in game note popup
 - Added tweaks to options page.

2.2.4
 - Fixed issue identified with updating of flags
 - Added Facebook Names to options page

2.2.1 - 2.2.2
 - Fixed issue with paging on options page.
 - Addressed issue with incorrect tile count in bag for 
   Wordscraper


2.2.0
 - Added in game notes view with hover on OWL Eyes
 - Added Reference Grid option to board
 - Added click to type option in game
 - Added options page for more real estate to manage extension
   - Stored notes can be deleted/viewed on options page
 - Added auto refresh on owl update
 - Added new update notification 
 


2.1.5
 - Added note notification to game cards
 - Added delete button for notes

2.1.0
 
 - Added indicator for notes with new icon and in game display
 - Included setting for displaying tile value
 - Fixed issue with losing game counts when refresh button is clicked
 - Corrected tiles left in bag for more than two players

2.0.2
 - Fixed issue with notes first option being stuck
 - Added version number to heading
 - Vowel colour changed and corresponding setting now automatically updates without a refresh.

2.0.1
 - Fixed perpetual loading

2.0
 - Added notes and settings to control the following
   * Total tile count
   * Distinguishing vowels
   * Showing all tiles but faded for depleted tiles
 - Reformatted layout
 - Removed FB like

1.9.3 & 1.9.4
 - Fixed glitch with appearance of in game dictionary look-up owl
 - Fixed count issue identified for games list
 - Added FB like

1.9.2
 - Added in game dictionary look-up for valid words
 - Added counts for your moves + opponent moves


Coming soon:
Recording game data!                    

확장 프로그램 기본 정보

이름 OWLS Word Games Enhancer OWLS Word Games Enhancer
ID pdpejcfahhppmalemodibekpbiopmogo
공식 URL https://chrome.google.com/webstore/detail/owls-word-games-enhancer/pdpejcfahhppmalemodibekpbiopmogo
설명 This extension provides auxiliary features to popular word games
파일 크기 426 KB
설치 횟수 474
현재 버전 4.0.0.2
최근 업데이트 2019-12-18
출시 날짜 2019-12-18
평점 4.50/5 총 36 개의 평점
개발자 http://dalevross.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://dalevross.com/OWLS_Word_Games_Enhancer.html#owlmain
도움말 페이지 URL https://dalevross.com/OWLS_Word_Games_Enhancer.html#owlfaq
개인정보 보호 정책 페이지 URL https://app.termly.io/document/privacy-policy/94fbe201-9bc8-4bbb-8475-c005f72ab251
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "OWLS Word Games Enhancer",
    "description": "This extension provides auxiliary features to popular word games",
    "version": "4.0.0.2",
    "background": {
        "scripts": [
            "jquery-2.0.3.min.js",
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "icon-19.png",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Alt+Shift+O"
            },
            "description": "Open OWL"
        },
        "clear-settings": {
            "suggested_key": {
                "default": "Alt+Shift+1"
            },
            "description": "Reset OWL Settings to default values"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/scrabblefb-live2.sn.eamobile.com\/*",
                "http:\/\/scrabblefb-live2.sn.eamobile.com\/*"
            ],
            "js": [
                "jquery-2.0.3.min.js",
                "jquery.browser.js",
                "md5.js",
                "jquery-bubble-popup-v3.min.js",
                "eaparser.js"
            ],
            "css": [
                "css\/jquery-bubble-popup-v3.css"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "owl-lookup.png",
        "notes-owl.png",
        "icon-19-notes.png",
        "icon-48.png",
        "look.png",
        "owl-on-coke.png",
        "jquerybubblepopup-themes\/*",
        "images\/*",
        "gridref-left.png",
        "gridref-top.png"
    ],
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/aws.rjs.in\/",
        "http:\/\/moltengold.com\/"
    ],
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_security_policy": "script-src 'self'; object-src 'self'"
}