Addon Everywhere

This extension helps you discover applicable tampermonkey UserScripts and stylish Customized Styles for the site you are exploring.

What is Addon Everywhere?

Addon Everywhere is a Chrome extension developed by ww, and its main feature is "This extension helps you discover applicable tampermonkey UserScripts and stylish Customized Styles for the site you are exploring.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Addon Everywhere Extension CRX File

Download Addon Everywhere extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        ======本扩展支持中文英文======
This Extension supports Chinese and English
‘Addon Everywhere’,让改善触手可及。
====================================
为什么做了这样一个扩展?

再好的网站也很难满足所有用户的需求(比如我就觉得淘宝网虽然强大但太花里胡哨),
所以人们就想了一些办法,在一定程度上自定义网页的行为和外观。

“用户脚本UserScript”和“Stylish自定义样式”是两种常见的网页增强的方案。

“用户脚本UserScript”利用一些浏览器扩展(如TamperMonkey,Greasemonkey等)常驻后台,可以给网页添加更多功能(自定义行为),如给淘宝加入比价功能,给百度网盘加入直接下载功能,给12306增加抢票功能等。

而“自定义样式”则帮网页“换肤”。通过诸如“Stylish”等浏览器扩展,人们可以加载自定义的样式文件来改变网站的外观,使之更美观实用。如“还你一个干净的微博(重新排版)”,“美化千年不变的百度页面”,“全局夜间模式(夜间护眼)”等

热心网友们贡献了许多“用户脚本UserScript”和“Stylish自定义样式”,然而人们在没有强烈需求的时候其实很少会主动地想起来为某个页面寻找脚本或样式,也就错过了许多实用的好脚本、好样式。

本扩展即旨在您浏览网页的时候,帮您随时随地、被动地发现好脚本、好样式。
不需您动手,好脚本好样式就找上门来了!

‘Addon Everywhere’,让改善触手可及。
====================================
Why I create this extension?

There's no website can meet all users' requirement (for example, I just feel there are too many advertisements in taobao.com though it is really powerful). So people start to find ways to somehow customize the behavior and appearance of the website to meet their preference. 

'UserScript' and 'Customized Stylish Styles' are definitely two good options.

'UserScripts' are a kind of customized JavaScript programs, which will keep running in the background by use of a 'UserScript Manager Browser Extension' like 'TamperMonkey', and will provide you extra functions and convenience by modifying the certain target web pages (like google, twitter) that you are exploring. 
e.g:, compare price of items in Amazon, add extra search options to Google etc.

'Customized Stylish Styles' is similar with 'UserScripts', the difference is that: 'UserScripts' mainly change the behavior of web page, while 'Customized Stylish Styles' change the appearance. By use of 'Stylish', another Chrome extension, people can change the web page theme by loading customized styles.
some examples: 'Give the fackbook a clear dark view', 'Custom YouTube video progress bar to Nyan Cat','Night mode for all web pages to protect your eyes'.

One aspect of 'UserScripts' and 'Customized Styles' is that they can be shared. They can be uploaded to a repository where they become available to other users for downloading. 

However, there's really rare case that we search 'UserScripts' and 'Customized Styles' on our initiative.

'Addon Everywhere' is born to help you discovery good 'UserScripts' and 'Customized Styles' instantly and passively while you are exploring the web page. 
Without any burden, good 'UserScripts' and 'Customized Styles' just come to you!

====================================                    

Extension Basic Information

Name Addon Everywhere Addon Everywhere
ID nlagochcieefibigciiakkjaopfpnbcp
Official URL https://chromewebstore.google.com/detail/addon-everywhere/nlagochcieefibigciiakkjaopfpnbcp
Description This extension helps you discover applicable tampermonkey UserScripts and stylish Customized Styles for the site you are exploring.
File Size 2.69 MB
Installation Count 1,544
Current Version 1.0.10
Last Updated 2018-08-04
Publish Date 2018-08-04
Rating 3.83/5 Total 12 Ratings
Developer ww
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "1.0.10",
    "manifest_version": 2,
    "description": "__MSG_extDesc__",
    "default_locale": "en",
    "icons": {
        "16": "assets\/icons\/icon_16.png",
        "26": "assets\/icons\/icon_26.png",
        "32": "assets\/icons\/icon_32.png",
        "36": "assets\/icons\/icon_36.png",
        "48": "assets\/icons\/icon_48.png",
        "64": "assets\/icons\/icon_64.png",
        "128": "assets\/icons\/icon_128.png",
        "256": "assets\/icons\/icon_256.png",
        "512": "assets\/icons\/icon_512.png"
    },
    "web_accessible_resources": [
        "assets\/icons\/*.*",
        "assets\/images\/*.*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "background": {
        "page": "background\/index.html"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "background",
        "storage",
        "tabs",
        "management",
        "webRequest",
        "webRequestBlocking",
        "identity",
        "identity.email",
        "downloads"
    ],
    "options_ui": {
        "page": "options\/index.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_popup": "popup\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                ".\/contentScripts\/index.js"
            ],
            "css": [
                ".\/contentScripts\/index.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}