Entelect Tech Blog Plugin

Adds additional functionality to Entelect's Yoda website

Entelect Tech Blog Plugin là gì?

Entelect Tech Blog Plugin là một tiện ích mở rộng Chrome được phát triển bởi Jonathan Counihan, và tính năng chính của nó là "Adds additional functionality to Entelect's Yoda website".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Entelect Tech Blog Plugin

Tải xuống các tệp mở rộng Entelect Tech Blog Plugin dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension allows easier searching on Entelect's Yoda website
Not endorsed by Entelect Solutions.

Features include:
* Client side search
* Faster text based searching
* Searching by tag
* Updated listing to allowing of posts and user profiles in new windows.
* Popup to enable/disable the extension
* Stats Dashboard (more stats coming soon!)

How to Use:

Select a Tag or enter some text in the search box, then click Search or press enter. The search will be performed client side, leading to an improved user experience.

The extension can be enabled or disabled by opening the popup and clicking on the relevant option.
The popup also displays some (limited for now!) stats.

Please mail me with bugs and feature requests.

This extension is not endorsed by Entelect Systems, and it leverages all the hard work of the devs (past and present) on the Yoda team.

----------------------
Version 1.0.15
----------------------
* Cache update
* Fixed a bug where the newest posts were not being downloaded.

----------------------
Version 1.0.14
----------------------
* Cache update
* Ordered the Stats Top Authors by number of posts then number of reputation points.

----------------------
Version 1.0.13
----------------------
* Cache update
* Increased the number of posts requested when rebuilding cache.

----------------------
Version 1.0.11
----------------------
* Fixed a bug where the post listing was not being updated to add the client side searching.

----------------------
Version 1.0.10
----------------------
* Cache update
* MOAR Stats! Check them out!
* Completed rebranding, added favicon.

----------------------
Version 1.0.9
----------------------
* Cache update
* Checkbox on popup

----------------------
Version 1.0.8
----------------------
* Rebranded the name
* Cache update
* Fixed a bug on first install, where the extension was not enabled.
* Performance improvements.

----------------------
Version 1.0.7
----------------------
* Cache update
* Performance fixes related to the cache loading
* Fixed a bug on the display of the results numbers when counting
* Fixed some bugs on the post display to reference the correct urls.

----------------------
Version 1.0.6
----------------------
* Cache update
* Stats Dashboard

----------------------
Version 1.0.5
----------------------
* Working popup to enable/disable the extension and show some stats.
* Updated icon to show extension state.

----------------------
Version 1.0.4
----------------------
* Cache update
* Added the ability to download cache

----------------------
Version 1.0.3
----------------------
* Added search to main list page
* Changed search to work with username
* Changed search to be AND instead of OR.

----------------------
Version 1.0.2
----------------------
* Search updates
* Permission Updates

----------------------
Version 1.0.1
----------------------
* Image updates

----------------------
Version 1.0
----------------------
* Initial release.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Entelect Tech Blog Plugin Entelect Tech Blog Plugin
ID hjgihgbcngajhhlkiffhegbjgbhhnenh
URL Chính Thức https://chromewebstore.google.com/detail/entelect-tech-blog-plugin/hjgihgbcngajhhlkiffhegbjgbhhnenh
Mô tả Adds additional functionality to Entelect's Yoda website
Kích Thước Tệp 672 KB
Số Lần Cài Đặt 78
Phiên Bản Hiện Tại 1.0.15
Cập Nhật Lần Cuối 2016-06-13
Ngày Phát Hành 2016-06-13
Nhà Phát Triển Jonathan Counihan
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://yoda.entelect.co.za
URL Trang Chính Sách Bảo Mật http://www.counihan.co.za/privacy.txt
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Entelect Tech Blog Plugin",
    "short_name": "Entelect Tech Blog Plugin",
    "description": "Adds additional functionality to Entelect's Yoda website",
    "version": "1.0.15",
    "author": "Jonathan Counihan",
    "browser_action": {
        "default_title": "Entelect Tech Blog Plugin",
        "default_icon": {
            "19": "images\/yoda19.png",
            "48": "images\/yoda48.png",
            "128": "images\/yoda128.png"
        },
        "default_popup": "html\/popup.html"
    },
    "permissions": [
        "unlimitedStorage",
        "storage",
        "http:\/\/blog.entelect.co.za\/",
        "https:\/\/yoda.entelect.co.za\/"
    ],
    "web_accessible_resources": [
        "assets\/*",
        "images\/*",
        "css\/*",
        "js\/*",
        "fonts\/*",
        "html\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "page": "html\/background.html",
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/yoda.entelect.co.za\/*"
            ],
            "css": [
                "css\/plugin.css"
            ],
            "js": [
                "js\/scripts\/extensions.js",
                "js\/scripts\/Draggable.min.js",
                "js\/scripts\/TweenMax.min.js",
                "js\/scripts\/jquery.js",
                "js\/scripts\/jquery-ui-1.9.2.custom.min.js",
                "js\/scripts\/jquery.parseHTMLForScraping.js",
                "js\/scripts\/bootstrap.min.js",
                "js\/scripts\/knockout.3.4.0.js",
                "js\/scripts\/knockout-projections.min.js",
                "js\/scripts\/knockout.custom.js",
                "js\/scripts\/moment.min.js",
                "js\/yodaUtils.js",
                "js\/yodaEntities.js",
                "js\/yodaCache.js",
                "js\/yodaSearch.js",
                "js\/initExtension.js"
            ]
        }
    ]
}